File tree Expand file tree Collapse file tree 5 files changed +18424
-28290
lines changed Expand file tree Collapse file tree 5 files changed +18424
-28290
lines changed Original file line number Diff line number Diff line change 11
11
jobs :
12
12
# Run php tests.
13
13
php-tests :
14
- runs-on : ubuntu-20 .04
14
+ runs-on : ubuntu-22 .04
15
15
if : " !contains(github.event.head_commit.message, 'ci skip')"
16
16
strategy :
17
17
matrix :
Original file line number Diff line number Diff line change
1
+ @use " sass:map" ;
2
+
1
3
// Center block
2
4
@mixin center-block {
3
5
display : block ;
7
9
8
10
// Column width with margin
9
11
@mixin column-width ($numberColumns : 3 ) {
10
- width : map- get ($columns , $numberColumns ) - ( calc (($columns--margin * ($numberColumns - 1 )) / $numberColumns ) );
12
+ width : map . get ($columns , $numberColumns ) - ( calc (($columns--margin * ($numberColumns - 1 )) / $numberColumns ) );
11
13
}
12
14
13
15
@mixin font-size ($sizeValue : 1 ) {
Original file line number Diff line number Diff line change 194
194
195
195
.quantity-button-style4 {
196
196
.quantity {
197
+ border-width : 1px ;
198
+
197
199
@media (min-width : 1025px ) {
198
200
width : 40% ;
199
201
}
200
202
201
- border-width : 1px ;
202
203
.botiga-quantity-plus ,
203
204
.botiga-quantity-minus {
204
205
font-size : 1.4rem ;
220
221
221
222
.quantity-button-style5 {
222
223
.quantity {
224
+ border : none ;
223
225
@media (min-width : 1025px ) {
224
226
width : 40% ;
225
227
}
226
- border : none ;
227
228
.botiga-quantity-plus ,
228
229
.botiga-quantity-minus {
229
230
font-size : 1.4rem ;
240
241
241
242
.quantity-button-style6 {
242
243
.quantity {
244
+ border : none ;
243
245
@media (min-width : 1025px ) {
244
246
width : 50% ;
245
247
}
246
- border : none ;
247
248
.botiga-quantity-plus ,
248
249
.botiga-quantity-minus {
249
250
font-size : 1.4rem ;
282
283
283
284
.quantity-button-style7 {
284
285
.quantity {
286
+ border-width : 1px ;
285
287
@media (min-width : 1025px ) {
286
288
width : 22% ;
287
289
}
288
- border-width : 1px ;
289
290
.botiga-quantity-plus ,
290
291
.botiga-quantity-minus {
291
292
width : 22px ;
317
318
318
319
.quantity-button-style8 {
319
320
.quantity {
321
+ padding : 5px ;
322
+ border-width : 1px ;
323
+
320
324
@media (min-width : 1025px ) {
321
325
width : 40% ;
322
326
}
323
- padding : 5px ;
324
- border-width : 1px ;
327
+
325
328
.botiga-quantity-plus ,
326
329
.botiga-quantity-minus {
327
330
font-size : 1.4rem ;
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ const styleTasks = config.styles.map((style) => {
58
58
. pipe ( plumber ( errorHandler ) )
59
59
. pipe (
60
60
sass ( {
61
+ silenceDeprecations : [ 'import' , 'legacy-js-api' ] ,
61
62
errLogToConsole : config . errLogToConsole ,
62
63
outputStyle : 'expanded' ,
63
64
precision : config . precision
@@ -91,6 +92,7 @@ const styleMinTasks = config.styles.map((style) => {
91
92
. pipe ( plumber ( errorHandler ) )
92
93
. pipe (
93
94
sass ( {
95
+ silenceDeprecations : [ 'import' , 'legacy-js-api' ] ,
94
96
errLogToConsole : config . errLogToConsole ,
95
97
outputStyle : 'compressed' ,
96
98
precision : config . precision
You can’t perform that action at this time.
0 commit comments