Skip to content

Commit 1813e56

Browse files
committed
make tablet breakpoints into mobile breakpoints
1 parent 8db0f45 commit 1813e56

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

resources/sass/app.scss

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ li {
109109
.store > header {
110110
flex-direction: row;
111111

112-
@media (max-width: $max-width-breakpoint-tablet) {
112+
@media (max-width: $max-width-breakpoint-mobile) {
113113
flex-direction: column-reverse;
114114
}
115115

@@ -129,7 +129,7 @@ li {
129129
vertical-align: middle;
130130
}
131131

132-
@media (max-width: $max-width-breakpoint-tablet) {
132+
@media (max-width: $max-width-breakpoint-mobile) {
133133
margin-bottom: 1rem;
134134
}
135135
}
@@ -228,7 +228,7 @@ dl.import-meta dd:not(:last-child) {
228228

229229
dl.import-meta .download-csv {
230230
float: right;
231-
@media(max-width: $max-width-breakpoint-tablet){
231+
@media(max-width: $max-width-breakpoint-mobile){
232232
float: none;
233233
padding-block-end: 0;
234234
margin-block-end: 1em;
@@ -281,7 +281,7 @@ dl.import-meta .download-csv {
281281
}
282282

283283
&:focus {
284-
box-shadow: $box-shadow-inset-small $box-shadow-color-progressive--focus $box-shadow-inset-medium $box-shadow-color-inverted;
284+
box-shadow: $box-shadow-inset-small $box-shadow-color-progressive--focus, $box-shadow-inset-medium $box-shadow-color-inverted;
285285
border-color: $border-color-progressive--focus;
286286
background-color: $background-color-progressive;
287287
}
@@ -335,12 +335,12 @@ dl.import-meta .download-csv {
335335

336336
&.right {
337337
justify-content: flex-end;
338-
@media (max-width: $max-width-breakpoint-tablet) {
338+
@media (max-width: $max-width-breakpoint-mobile) {
339339
justify-content: flex-start;
340340
}
341341
}
342342

343-
@media (max-width: $max-width-breakpoint-tablet) {
343+
@media (max-width: $max-width-breakpoint-mobile) {
344344
justify-content: flex-start;
345345
}
346346
}
@@ -389,7 +389,7 @@ dl.import-meta .download-csv {
389389
}
390390

391391
.button {
392-
@media (max-width: $max-width-breakpoint-tablet) {
392+
@media (max-width: $max-width-breakpoint-mobile) {
393393
width: 100%;
394394
text-align: center;
395395
}

0 commit comments

Comments
 (0)