mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2025-04-05 03:18:29 +00:00
37 lines
661 B
CSS
37 lines
661 B
CSS
/* Copyright 2022 Anri Dellal
|
|
* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
@-moz-document url("about:config") {
|
|
#search-container,
|
|
#toolbar, #prefs {
|
|
min-width: 300px !important;
|
|
}
|
|
|
|
@media (max-width: 644px) {
|
|
#toolbar {
|
|
flex-direction: column;
|
|
}
|
|
|
|
#about-config-search {
|
|
max-width: 100%;
|
|
}
|
|
|
|
#prefs {
|
|
word-wrap: anywhere;
|
|
}
|
|
|
|
.checkbox-container {
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
tr {
|
|
font-size: 12px;
|
|
}
|
|
|
|
th {
|
|
padding-left: 8px !important;
|
|
}
|
|
}
|
|
}
|