Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
kudlajz committed Feb 19, 2024
1 parent 084b38b commit 68c860c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/Gallery/Gallery.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
}

:global {
/* stylelint-disable selector-class-pattern, max-nesting-depth */
.prezly-slate-gallery.prezly-slate-gallery--expanded {
@media (min-width: 992px) {
@media (width >= 992px) {
position: relative;
width: 100vw;
left: 50%;
Expand All @@ -20,12 +21,13 @@
margin-right: -50vw;
}

@media (min-width: 1120px) {
@media (width >= 1120px) {
position: static;
max-width: 1120px;
margin-left: -200px;
}
}
/* stylelint-enable selector-class-pattern, max-nesting-depth */
}
}

Expand Down

0 comments on commit 68c860c

Please sign in to comment.