Skip to content

Commit d5f9a00

Browse files
author
Erwin Dondorp
committed
fixed sytlelint media-feature-range-notation
1 parent 324be5e commit d5f9a00

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

saltgui/static/stylesheets/main.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ h1 {
8787
margin-left: 0;
8888
}
8989

90-
@media (max-width: 950px) {
90+
@media (width < 950px) {
9191
.panel {
9292
margin-left: 0;
9393
}
@@ -191,12 +191,12 @@ h1 {
191191
cursor: pointer;
192192
}
193193

194-
@media (min-width: 950px) {
194+
@media (width >= 950px) {
195195
.fullmenu { display: inline-block; }
196196
.minimenu { display: none; }
197197
}
198198

199-
@media (max-width: 950px) {
199+
@media (width < 950px) {
200200
.fullmenu { display: none; }
201201
.minimenu { display: inline-block; }
202202
}

saltgui/static/stylesheets/page.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ table tr td:last-of-type {
300300
flex-grow: 1;
301301
}
302302

303-
@media (max-width: 950px) {
303+
@media (width < 950px) {
304304
.minions {
305305
min-width: 0;
306306
}

0 commit comments

Comments
 (0)