mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-03 21:43:18 +00:00
stylelint: Fix media-feature-range-notation.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user