mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2025-04-05 03:18:29 +00:00
24 lines
543 B
CSS
24 lines
543 B
CSS
/* Copyright 2022 Anri Dellal
|
|
* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
@-moz-document url("about:logins") {
|
|
.container {
|
|
min-width: 300px !important;
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
body {
|
|
--sidebar-width: 200px !important;
|
|
grid-template-columns: var(--sidebar-width) 1fr !important;
|
|
}
|
|
|
|
.edit-button, .delete-button {
|
|
font-size: 0 !important;
|
|
background-position: center;
|
|
}
|
|
|
|
#branding-logo {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|