1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-07 21:49:58 +02:00

Fixed dialog width in compact view for light and dark mode

This commit is contained in:
ID 2025-03-28 01:42:28 +01:00
parent bfae6d975c
commit 3bb11e11c3
No known key found for this signature in database

View file

@ -3,10 +3,12 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* Zen Welcome idalog override */
/* Zen Welcome dialog override */
@media (prefers-color-scheme: dark) {
.dialogBox:not(.spotlightBox) {
border: 1px solid var(--zen-colors-border);
}
}
.dialogBox:not(.spotlightBox) {
min-width: min(80vw, 376px);
}
}