stylelint: Fix media-feature-range-notation.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2023-04-04 16:02:48 -07:00
parent 3af350e4dc
commit d86482a804

View File

@@ -658,7 +658,7 @@ i.open-network-button {
} }
/* responsive grid */ /* responsive grid */
@media (min-width: 500px) and (max-width: 720px) { @media (width >= 500px) and (width <= 720px) {
#new-server-container { #new-server-container {
padding-left: 0; padding-left: 0;
width: 60vw; width: 60vw;
@@ -670,7 +670,7 @@ i.open-network-button {
} }
} }
@media (max-width: 500px) { @media (width <= 500px) {
#new-server-container { #new-server-container {
padding-left: 0; padding-left: 0;
width: 54%; width: 54%;
@@ -681,7 +681,7 @@ i.open-network-button {
} }
} }
@media (max-width: 650px) { @media (width <= 650px) {
.selected-css-path, .selected-css-path,
.download-folder-path { .download-folder-path {
margin-right: 15px; margin-right: 15px;
@@ -696,7 +696,7 @@ i.open-network-button {
} }
} }
@media (max-width: 720px) { @media (width <= 720px) {
.modal-container { .modal-container {
width: 60vw; width: 60vw;
padding: 40px; padding: 40px;
@@ -719,7 +719,7 @@ i.open-network-button {
} }
} }
@media (max-width: 600px) { @media (width <= 600px) {
.divider { .divider {
margin-left: 4%; margin-left: 4%;
} }
@@ -731,7 +731,7 @@ i.open-network-button {
} }
} }
@media (max-width: 900px) { @media (width <= 900px) {
.settings-card { .settings-card {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;