@iris.interactive/handcook 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iris.interactive/handcook",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "The web cooking by IRIS Interactive",
5
5
  "main": "./public/scripts/index.js",
6
6
  "scripts": {
@@ -143,6 +143,30 @@ body.fullscreen {
143
143
  margin-right: calc(50% - 50vw);
144
144
  }
145
145
 
146
+ /* Container
147
+ / ================================================== */
148
+ .container {
149
+ max-width: $container;
150
+ margin-left: auto;
151
+ margin-right: auto;
152
+
153
+ @include breakpoint(large) {
154
+ width: calc(100% - #{$margin-xlarge} * 2);
155
+ }
156
+
157
+ @include breakpoint(medium) {
158
+ width: calc(100% - #{$margin-large} * 2);
159
+ }
160
+
161
+ @include breakpoint(small) {
162
+ width: calc(100% - #{$margin-small} * 2);
163
+ }
164
+
165
+ @include breakpoint(xsmall) {
166
+ width: calc(100% - #{$margin-xsmall} * 2);
167
+ }
168
+ }
169
+
146
170
  /* Margin element
147
171
  / ================================================== */
148
172
  .hentry {
@@ -408,5 +408,5 @@ $c-warning: #ff890e;
408
408
  /* Difficulty
409
409
  / ================================================== */
410
410
  $c-easy: #9ccc65;
411
- $c-medium: #29b6f6;
411
+ $c-medium: #ff890e;
412
412
  $c-hard: #ef5350;