Adjust the license to be able to upstream adjustments from this repository to upstream Firefox. I've asked all contributors if they are fine with the license change in the related issue. Fixes: https://gitlab.com/postmarketOS/mobile-config-firefox/-/issues/31
24 lines
543 B
CSS
24 lines
543 B
CSS
/* Copyright 2021 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;
|
|
}
|
|
}
|
|
}
|