Skip to content

Commit d86482a

Browse files
committed
stylelint: Fix media-feature-range-notation.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 3af350e commit d86482a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/renderer/css/preference.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ i.open-network-button {
658658
}
659659

660660
/* responsive grid */
661-
@media (min-width: 500px) and (max-width: 720px) {
661+
@media (width >= 500px) and (width <= 720px) {
662662
#new-server-container {
663663
padding-left: 0;
664664
width: 60vw;
@@ -670,7 +670,7 @@ i.open-network-button {
670670
}
671671
}
672672

673-
@media (max-width: 500px) {
673+
@media (width <= 500px) {
674674
#new-server-container {
675675
padding-left: 0;
676676
width: 54%;
@@ -681,7 +681,7 @@ i.open-network-button {
681681
}
682682
}
683683

684-
@media (max-width: 650px) {
684+
@media (width <= 650px) {
685685
.selected-css-path,
686686
.download-folder-path {
687687
margin-right: 15px;
@@ -696,7 +696,7 @@ i.open-network-button {
696696
}
697697
}
698698

699-
@media (max-width: 720px) {
699+
@media (width <= 720px) {
700700
.modal-container {
701701
width: 60vw;
702702
padding: 40px;
@@ -719,7 +719,7 @@ i.open-network-button {
719719
}
720720
}
721721

722-
@media (max-width: 600px) {
722+
@media (width <= 600px) {
723723
.divider {
724724
margin-left: 4%;
725725
}
@@ -731,7 +731,7 @@ i.open-network-button {
731731
}
732732
}
733733

734-
@media (max-width: 900px) {
734+
@media (width <= 900px) {
735735
.settings-card {
736736
flex-direction: column;
737737
align-items: center;

0 commit comments

Comments
 (0)