1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-20 09:35:22 +02:00

[PM-3099] Desktop UI Small Screen Tweaks (#4620)

* add responsive queries for small screens

* increase media query max-width so icons don't get cut off on medium screens
This commit is contained in:
rr-bw 2023-08-16 10:16:27 -07:00 committed by GitHub
parent d2bff7eb8b
commit ffabb64f6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -504,3 +504,26 @@
}
}
}
.details {
.inner-content {
.box-content-row-flex:not([type="button"]) {
@media (max-width: 875px) {
flex-direction: column;
align-items: start;
}
.action-buttons {
@media (max-width: 875px) {
margin-left: 0;
}
}
.row-btn:first-of-type {
@media (max-width: 875px) {
margin-left: -8px;
}
}
}
}
}