holygrail2 1.2.2 → 1.2.3
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/dist/style.css +99 -114
- package/dist/style.css.map +1 -1
- package/doc/docs.css +4 -12
- package/doc/docs.css.map +1 -1
- package/package.json +1 -1
- package/scss/base/_animations.scss +0 -7
- package/scss/base/_guide.scss +0 -7
- package/scss/base/_helpers.scss +14 -50
- package/scss/base/_rtl.scss +0 -4
- package/scss/base/_types.scss +1 -4
- package/scss/docs.scss +4 -47
- package/scss/elements/_animated.scss +3 -6
- package/scss/elements/_buttons.scss +4 -11
- package/scss/elements/_checkbox.scss +0 -9
- package/scss/elements/_form.scss +1 -2
- package/scss/elements/_list.scss +0 -1
- package/scss/elements/_sidebar.scss +0 -12
- package/scss/elements/_tabs.scss +5 -89
- package/scss/elements/_tabs_specials.scss +0 -33
- package/scss/layouts/_box3.scss +0 -10
- package/scss/layouts/_header.scss +1 -1
- package/scss/layouts/_header_account.scss +0 -21
- package/scss/layouts/_row1.scss +0 -18
- package/scss/layouts/_runway.scss +0 -13
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
@import '../abstract/_all';
|
|
2
|
-
|
|
3
2
|
.ico-round {
|
|
4
3
|
width: 56px;
|
|
5
4
|
height: 56px;
|
|
@@ -10,7 +9,6 @@
|
|
|
10
9
|
white-space: nowrap;
|
|
11
10
|
border: 1px solid $c-middle-grey;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
12
|
.ico-round-sm {
|
|
15
13
|
width: 40px;
|
|
16
14
|
height: 40px;
|
|
@@ -21,7 +19,6 @@
|
|
|
21
19
|
white-space: nowrap;
|
|
22
20
|
border: 1px solid $c-middle-grey;
|
|
23
21
|
}
|
|
24
|
-
|
|
25
22
|
.checkbox-ico {
|
|
26
23
|
position: relative;
|
|
27
24
|
box-sizing: border-box;
|
|
@@ -34,7 +31,6 @@
|
|
|
34
31
|
margin: 0;
|
|
35
32
|
border-radius: 50%;
|
|
36
33
|
}
|
|
37
|
-
|
|
38
34
|
.checkbox-box {
|
|
39
35
|
position: absolute;
|
|
40
36
|
top: 0;
|
|
@@ -42,19 +38,16 @@
|
|
|
42
38
|
right: 0;
|
|
43
39
|
bottom: 0;
|
|
44
40
|
}
|
|
45
|
-
|
|
46
41
|
.checkbox-radio.checkbox-box {
|
|
47
42
|
label {
|
|
48
43
|
width: 100%;
|
|
49
44
|
height: 100%;
|
|
50
45
|
}
|
|
51
46
|
}
|
|
52
|
-
|
|
53
47
|
.checkbox-radio.checkbox-box [type='radio']:checked + label,
|
|
54
48
|
.checkbox-radio.checkbox-box [type='radio']:not(:checked) + label {
|
|
55
49
|
padding: 16px;
|
|
56
50
|
}
|
|
57
|
-
|
|
58
51
|
.checkbox-radio.checkbox-box [type='radio']:checked + label span,
|
|
59
52
|
.checkbox-radio.checkbox-box [type='radio']:not(:checked) + label span {
|
|
60
53
|
display: inline-block;
|
|
@@ -64,30 +57,25 @@
|
|
|
64
57
|
padding-left: 0;
|
|
65
58
|
min-height: 20px;
|
|
66
59
|
}
|
|
67
|
-
|
|
68
60
|
.checkbox-radio.checkbox-box [type='radio']:checked + label .ico-radio,
|
|
69
61
|
.checkbox-radio.checkbox-box [type='radio']:not(:checked) + label .ico-radio {
|
|
70
62
|
top: 6px;
|
|
71
63
|
left: 6px;
|
|
72
64
|
}
|
|
73
|
-
|
|
74
65
|
.checkbox-radio.checkbox-box [type='radio']:checked + label::before,
|
|
75
66
|
.checkbox-radio.checkbox-box [type='radio']:not(:checked) + label::before {
|
|
76
67
|
display: none;
|
|
77
68
|
}
|
|
78
|
-
|
|
79
69
|
ul.list-clear li.list-box {
|
|
80
70
|
list-style: none;
|
|
81
71
|
margin: 0;
|
|
82
72
|
margin-top: -1px;
|
|
83
73
|
left: 0;
|
|
84
74
|
position: relative;
|
|
85
|
-
|
|
86
75
|
&:last-child {
|
|
87
76
|
left: -2px;
|
|
88
77
|
}
|
|
89
78
|
}
|
|
90
|
-
|
|
91
79
|
.list-box {
|
|
92
80
|
width: 100%;
|
|
93
81
|
display: table-cell;
|
|
@@ -96,18 +84,15 @@ ul.list-clear li.list-box {
|
|
|
96
84
|
transition: all 0.2s ease;
|
|
97
85
|
opacity: 0.5;
|
|
98
86
|
left: -1px;
|
|
99
|
-
|
|
100
87
|
&.is-active,
|
|
101
88
|
&:hover {
|
|
102
89
|
border: 1px solid $c-primary;
|
|
103
90
|
opacity: 1;
|
|
104
91
|
cursor: pointer;
|
|
105
92
|
}
|
|
106
|
-
|
|
107
93
|
&:first-child {
|
|
108
94
|
left: 0;
|
|
109
95
|
}
|
|
110
|
-
|
|
111
96
|
&::before {
|
|
112
97
|
content: '';
|
|
113
98
|
display: block;
|
|
@@ -115,22 +100,18 @@ ul.list-clear li.list-box {
|
|
|
115
100
|
padding-top: 15%;
|
|
116
101
|
min-height: 78px;
|
|
117
102
|
}
|
|
118
|
-
|
|
119
103
|
.checkbox-radio [type='radio']:checked + label,
|
|
120
104
|
.checkbox-radio [type='radio']:not(:checked) + label {
|
|
121
105
|
flex-direction: row;
|
|
122
|
-
|
|
123
106
|
@media (min-width: 992px) {
|
|
124
107
|
flex-direction: column;
|
|
125
108
|
}
|
|
126
109
|
}
|
|
127
|
-
|
|
128
110
|
&-label {
|
|
129
111
|
display: flex;
|
|
130
112
|
align-items: center;
|
|
131
113
|
padding: 16px;
|
|
132
114
|
justify-content: space-between;
|
|
133
|
-
|
|
134
115
|
@media (min-width: 992px) {
|
|
135
116
|
align-items: center;
|
|
136
117
|
justify-content: center;
|
|
@@ -138,55 +119,44 @@ ul.list-clear li.list-box {
|
|
|
138
119
|
flex-wrap: wrap;
|
|
139
120
|
}
|
|
140
121
|
}
|
|
141
|
-
|
|
142
122
|
.checkbox-ico {
|
|
143
123
|
order: 1;
|
|
144
124
|
}
|
|
145
|
-
|
|
146
125
|
.checkbox-text {
|
|
147
126
|
order: 2;
|
|
148
127
|
}
|
|
149
|
-
|
|
150
128
|
@media (min-width: 992px) {
|
|
151
129
|
&::before {
|
|
152
130
|
width: 100%;
|
|
153
131
|
padding-top: 100%;
|
|
154
132
|
}
|
|
155
|
-
|
|
156
133
|
&:first-child {
|
|
157
134
|
left: 0;
|
|
158
135
|
}
|
|
159
|
-
|
|
160
136
|
.checkbox-ico {
|
|
161
137
|
margin: 10px;
|
|
162
138
|
order: 1;
|
|
163
139
|
}
|
|
164
|
-
|
|
165
140
|
.checkbox-text {
|
|
166
141
|
margin: 16px;
|
|
167
142
|
order: 3;
|
|
168
143
|
}
|
|
169
144
|
}
|
|
170
145
|
}
|
|
171
|
-
|
|
172
146
|
.multiple-table {
|
|
173
147
|
width: 100%;
|
|
174
148
|
display: flex;
|
|
175
149
|
flex-direction: column;
|
|
176
|
-
|
|
177
150
|
@media (min-width: 992px) {
|
|
178
151
|
flex-direction: row;
|
|
179
152
|
}
|
|
180
153
|
}
|
|
181
|
-
|
|
182
154
|
.two-table {
|
|
183
155
|
width: 100%;
|
|
184
156
|
display: flex;
|
|
185
157
|
flex-direction: row;
|
|
186
|
-
|
|
187
158
|
.list-box {
|
|
188
159
|
width: 100%;
|
|
189
|
-
|
|
190
160
|
&::before {
|
|
191
161
|
content: '';
|
|
192
162
|
display: block;
|
|
@@ -194,12 +164,10 @@ ul.list-clear li.list-box {
|
|
|
194
164
|
padding-top: 100%;
|
|
195
165
|
min-height: 78px;
|
|
196
166
|
}
|
|
197
|
-
|
|
198
167
|
.checkbox-radio [type='radio']:checked + label,
|
|
199
168
|
.checkbox-radio [type='radio']:not(:checked) + label {
|
|
200
169
|
flex-direction: column;
|
|
201
170
|
}
|
|
202
|
-
|
|
203
171
|
&-label {
|
|
204
172
|
display: flex;
|
|
205
173
|
align-items: center;
|
|
@@ -208,7 +176,6 @@ ul.list-clear li.list-box {
|
|
|
208
176
|
align-content: center;
|
|
209
177
|
flex-wrap: wrap;
|
|
210
178
|
}
|
|
211
|
-
|
|
212
179
|
.checkbox-text {
|
|
213
180
|
margin: 16px;
|
|
214
181
|
}
|
package/scss/layouts/_box3.scss
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
@import '../abstract/_all';
|
|
2
|
-
|
|
3
2
|
.box3 {
|
|
4
|
-
/* no se usa */
|
|
5
3
|
position: relative;
|
|
6
4
|
width: 100%;
|
|
7
5
|
min-height: 58px;
|
|
8
6
|
box-sizing: border-box;
|
|
9
7
|
display: flex;
|
|
10
|
-
|
|
11
8
|
.box3-middle {
|
|
12
9
|
width: 100px;
|
|
13
10
|
display: flex;
|
|
@@ -15,23 +12,19 @@
|
|
|
15
12
|
align-items: flex-end;
|
|
16
13
|
justify-content: center;
|
|
17
14
|
}
|
|
18
|
-
|
|
19
15
|
.box3-price {
|
|
20
16
|
display: flex;
|
|
21
17
|
flex-direction: column;
|
|
22
18
|
min-width: 60px;
|
|
23
|
-
|
|
24
19
|
img {
|
|
25
20
|
max-width: 60px;
|
|
26
21
|
}
|
|
27
22
|
}
|
|
28
|
-
|
|
29
23
|
.box3-right {
|
|
30
24
|
display: flex;
|
|
31
25
|
flex-direction: column;
|
|
32
26
|
min-width: 60px;
|
|
33
27
|
}
|
|
34
|
-
|
|
35
28
|
.box3-content {
|
|
36
29
|
display: flex;
|
|
37
30
|
flex: 1;
|
|
@@ -40,14 +33,12 @@
|
|
|
40
33
|
align-content: flex-start;
|
|
41
34
|
word-break: break-word;
|
|
42
35
|
}
|
|
43
|
-
|
|
44
36
|
.box3-img {
|
|
45
37
|
display: flex;
|
|
46
38
|
justify-content: center;
|
|
47
39
|
align-items: center;
|
|
48
40
|
margin-right: 16px;
|
|
49
41
|
}
|
|
50
|
-
|
|
51
42
|
.box3-top {
|
|
52
43
|
padding-top: 2px;
|
|
53
44
|
padding-left: 16px;
|
|
@@ -57,7 +48,6 @@
|
|
|
57
48
|
align-content: flex-end;
|
|
58
49
|
justify-content: flex-start;
|
|
59
50
|
}
|
|
60
|
-
|
|
61
51
|
&:hover {
|
|
62
52
|
cursor: pointer;
|
|
63
53
|
}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
@import '../abstract/_all';
|
|
2
|
-
|
|
3
2
|
@media (max-width: #{$break-sm - 1}) {
|
|
4
|
-
/* no se usa */
|
|
5
3
|
.header-account-logo {
|
|
6
4
|
display: none;
|
|
7
5
|
}
|
|
8
6
|
}
|
|
9
|
-
|
|
10
7
|
.header-account-head {
|
|
11
8
|
position: relative;
|
|
12
9
|
height: 56px;
|
|
@@ -20,13 +17,11 @@
|
|
|
20
17
|
background-color: $c-white;
|
|
21
18
|
z-index: 1002;
|
|
22
19
|
border-bottom: var(--line-width) solid $c-dark-grey;
|
|
23
|
-
|
|
24
20
|
@media (min-width: $break-sm) {
|
|
25
21
|
height: 72px;
|
|
26
22
|
padding: 0 16px;
|
|
27
23
|
}
|
|
28
24
|
}
|
|
29
|
-
|
|
30
25
|
.header-account-first {
|
|
31
26
|
position: relative;
|
|
32
27
|
min-width: 120px;
|
|
@@ -35,19 +30,16 @@
|
|
|
35
30
|
align-items: center;
|
|
36
31
|
height: 100%;
|
|
37
32
|
}
|
|
38
|
-
|
|
39
33
|
.header-account-cart {
|
|
40
34
|
min-width: 120px;
|
|
41
35
|
display: flex;
|
|
42
36
|
flex-flow: row wrap;
|
|
43
37
|
align-items: center;
|
|
44
38
|
justify-content: flex-end;
|
|
45
|
-
|
|
46
39
|
svg {
|
|
47
40
|
transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
48
41
|
}
|
|
49
42
|
}
|
|
50
|
-
|
|
51
43
|
.header-account-back {
|
|
52
44
|
transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
|
|
53
45
|
position: absolute;
|
|
@@ -59,7 +51,6 @@
|
|
|
59
51
|
align-content: center;
|
|
60
52
|
align-items: center;
|
|
61
53
|
}
|
|
62
|
-
|
|
63
54
|
.header-account-count {
|
|
64
55
|
display: flex;
|
|
65
56
|
position: absolute;
|
|
@@ -69,7 +60,6 @@
|
|
|
69
60
|
align-items: flex-end;
|
|
70
61
|
transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
71
62
|
}
|
|
72
|
-
|
|
73
63
|
.header-cart {
|
|
74
64
|
position: fixed;
|
|
75
65
|
z-index: 50;
|
|
@@ -84,28 +74,23 @@
|
|
|
84
74
|
transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
85
75
|
box-shadow: rgb(149 157 165 / 20%) 0 8px 24px;
|
|
86
76
|
pointer-events: none;
|
|
87
|
-
|
|
88
77
|
&::-webkit-scrollbar {
|
|
89
78
|
width: 6px;
|
|
90
79
|
height: 6px;
|
|
91
80
|
}
|
|
92
|
-
|
|
93
81
|
&::-webkit-scrollbar-track {
|
|
94
82
|
background: rgb(188 188 188 / 10%);
|
|
95
83
|
}
|
|
96
|
-
|
|
97
84
|
&::-webkit-scrollbar-thumb {
|
|
98
85
|
background: rgb(41 41 41 / 50%);
|
|
99
86
|
border-radius: 50px;
|
|
100
87
|
height: 20%;
|
|
101
88
|
}
|
|
102
|
-
|
|
103
89
|
@media (min-width: $break-sm) {
|
|
104
90
|
transform: translateY(-100px);
|
|
105
91
|
display: none;
|
|
106
92
|
}
|
|
107
93
|
}
|
|
108
|
-
|
|
109
94
|
.header-cart-resume {
|
|
110
95
|
left: 0;
|
|
111
96
|
right: 0;
|
|
@@ -113,30 +98,24 @@
|
|
|
113
98
|
background-color: $c-white;
|
|
114
99
|
border-bottom: var(--line-width) solid $c-primary;
|
|
115
100
|
}
|
|
116
|
-
|
|
117
101
|
.header-cart-list {
|
|
118
102
|
width: unset;
|
|
119
103
|
height: calc(100% - 180px);
|
|
120
104
|
}
|
|
121
|
-
|
|
122
105
|
.is-cart {
|
|
123
106
|
.header-account-cart svg {
|
|
124
107
|
transform: rotate(180deg);
|
|
125
108
|
}
|
|
126
|
-
|
|
127
109
|
.header-account-back {
|
|
128
110
|
transform: translateY(100px);
|
|
129
111
|
}
|
|
130
|
-
|
|
131
112
|
.header-account-count {
|
|
132
113
|
transform: translateY(-50%);
|
|
133
114
|
}
|
|
134
|
-
|
|
135
115
|
.header-cart {
|
|
136
116
|
pointer-events: all;
|
|
137
117
|
opacity: 1;
|
|
138
118
|
transform: translateY(56px);
|
|
139
|
-
|
|
140
119
|
@media (min-width: $break-sm) {
|
|
141
120
|
transform: translateY(72px);
|
|
142
121
|
}
|
package/scss/layouts/_row1.scss
CHANGED
|
@@ -1,31 +1,24 @@
|
|
|
1
1
|
@import '../abstract/_all';
|
|
2
|
-
|
|
3
2
|
.row1-wrap {
|
|
4
3
|
overflow: hidden;
|
|
5
4
|
}
|
|
6
|
-
|
|
7
5
|
.row1 {
|
|
8
|
-
/* no se usa */
|
|
9
|
-
display: box;
|
|
10
6
|
display: flex;
|
|
11
7
|
flex-flow: row wrap;
|
|
12
8
|
flex-shrink: 0;
|
|
13
9
|
flex-grow: 1;
|
|
14
10
|
margin-left: -4px;
|
|
15
11
|
margin-right: -4px;
|
|
16
|
-
|
|
17
12
|
@media (min-width: $break-lg) {
|
|
18
13
|
margin-left: -8px;
|
|
19
14
|
margin-right: -8px;
|
|
20
15
|
}
|
|
21
|
-
|
|
22
16
|
.box-single {
|
|
23
17
|
display: block;
|
|
24
18
|
content: '';
|
|
25
19
|
width: 100%;
|
|
26
20
|
padding-top: 133.25%;
|
|
27
21
|
}
|
|
28
|
-
|
|
29
22
|
.box-single,
|
|
30
23
|
.box-single-center,
|
|
31
24
|
.box-double,
|
|
@@ -35,66 +28,55 @@
|
|
|
35
28
|
flex-grow: 1;
|
|
36
29
|
flex-shrink: 1;
|
|
37
30
|
padding: 0 4px;
|
|
38
|
-
|
|
39
31
|
@media (min-width: $break-lg) {
|
|
40
32
|
padding: 0 8px;
|
|
41
33
|
}
|
|
42
34
|
}
|
|
43
|
-
|
|
44
35
|
.box-single,
|
|
45
36
|
.box-single-center {
|
|
46
37
|
flex-basis: calc(50% - 1em);
|
|
47
38
|
max-width: 50%;
|
|
48
39
|
}
|
|
49
|
-
|
|
50
40
|
.box-super {
|
|
51
41
|
-webkit-box-flex: 1;
|
|
52
42
|
flex-grow: 1;
|
|
53
43
|
flex-basis: calc(100% - 1em);
|
|
54
44
|
}
|
|
55
|
-
|
|
56
45
|
@media (min-width: $break-lg) {
|
|
57
46
|
.box-single {
|
|
58
47
|
flex-basis: calc(50% - 1em);
|
|
59
48
|
max-width: 50%;
|
|
60
49
|
}
|
|
61
|
-
|
|
62
50
|
.box-single-center {
|
|
63
51
|
justify-content: center;
|
|
64
52
|
display: flex;
|
|
65
53
|
flex-basis: calc(100% - 1em);
|
|
66
54
|
max-width: 100%;
|
|
67
|
-
|
|
68
55
|
.card9-wrap {
|
|
69
56
|
flex-basis: calc(50% - 1em);
|
|
70
57
|
max-width: 50%;
|
|
71
58
|
}
|
|
72
59
|
}
|
|
73
|
-
|
|
74
60
|
.box-double,
|
|
75
61
|
.box-super {
|
|
76
62
|
flex-basis: calc(100% - 1em);
|
|
77
63
|
max-width: 100%;
|
|
78
|
-
|
|
79
64
|
.card9-contents {
|
|
80
65
|
text-align: center;
|
|
81
66
|
}
|
|
82
67
|
}
|
|
83
68
|
}
|
|
84
|
-
|
|
85
69
|
.explorer & {
|
|
86
70
|
.box-single {
|
|
87
71
|
flex-basis: calc(50% - 1em);
|
|
88
72
|
max-width: 50%;
|
|
89
73
|
}
|
|
90
|
-
|
|
91
74
|
.box-double {
|
|
92
75
|
flex-basis: calc(100% - 1em);
|
|
93
76
|
max-width: 100%;
|
|
94
77
|
}
|
|
95
78
|
}
|
|
96
79
|
}
|
|
97
|
-
|
|
98
80
|
.expanded .row1 {
|
|
99
81
|
@media (min-width: $break-lg) {
|
|
100
82
|
.box-single,
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
display: inline-flex;
|
|
10
10
|
div {
|
|
11
11
|
background: #ccc;
|
|
12
|
-
/* float: left; */
|
|
13
12
|
width: 22vw;
|
|
14
13
|
@media (min-width: $break-md) {
|
|
15
14
|
width: 15vw;
|
|
@@ -20,7 +19,6 @@
|
|
|
20
19
|
}
|
|
21
20
|
}
|
|
22
21
|
}
|
|
23
|
-
|
|
24
22
|
.btn--macro {
|
|
25
23
|
height: initial;
|
|
26
24
|
width: 100%;
|
|
@@ -29,15 +27,12 @@
|
|
|
29
27
|
opacity: 0.6;
|
|
30
28
|
}
|
|
31
29
|
}
|
|
32
|
-
|
|
33
30
|
.stories-list {
|
|
34
31
|
&:last-child {
|
|
35
32
|
border-bottom: var(--line-width) solid transparent;
|
|
36
33
|
}
|
|
37
|
-
|
|
38
34
|
padding: 16px 0;
|
|
39
35
|
border-bottom: var(--line-width) solid $c-primary;
|
|
40
|
-
|
|
41
36
|
display: flex;
|
|
42
37
|
.stories-item-1 {
|
|
43
38
|
width: 10%;
|
|
@@ -46,11 +41,9 @@
|
|
|
46
41
|
.stories-item-2 {
|
|
47
42
|
width: 80%;
|
|
48
43
|
gap: 16px;
|
|
49
|
-
|
|
50
44
|
div {
|
|
51
45
|
margin-bottom: 8px;
|
|
52
46
|
}
|
|
53
|
-
|
|
54
47
|
& :last-child {
|
|
55
48
|
margin-bottom: 0;
|
|
56
49
|
}
|
|
@@ -61,13 +54,10 @@
|
|
|
61
54
|
}
|
|
62
55
|
@media (min-width: $break-lg) {
|
|
63
56
|
padding: 16px;
|
|
64
|
-
|
|
65
57
|
&:last-child {
|
|
66
58
|
border-bottom: var(--line-width) solid $c-primary;
|
|
67
59
|
}
|
|
68
|
-
|
|
69
60
|
border-bottom: var(--line-width) solid $c-primary;
|
|
70
|
-
|
|
71
61
|
.stories-item-1 {
|
|
72
62
|
width: 10%;
|
|
73
63
|
}
|
|
@@ -76,7 +66,6 @@
|
|
|
76
66
|
grid-template-columns: 1fr 2fr 1fr;
|
|
77
67
|
column-gap: 16px;
|
|
78
68
|
width: 80%;
|
|
79
|
-
|
|
80
69
|
div {
|
|
81
70
|
margin-bottom: 0;
|
|
82
71
|
}
|
|
@@ -89,7 +78,6 @@
|
|
|
89
78
|
}
|
|
90
79
|
}
|
|
91
80
|
}
|
|
92
|
-
|
|
93
81
|
.stories-grid {
|
|
94
82
|
.grid-12 {
|
|
95
83
|
display: grid;
|
|
@@ -134,7 +122,6 @@
|
|
|
134
122
|
}
|
|
135
123
|
}
|
|
136
124
|
}
|
|
137
|
-
|
|
138
125
|
.stories-zoom {
|
|
139
126
|
position: fixed;
|
|
140
127
|
right: 16px;
|