mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
13 lines
379 B
CSS
13 lines
379 B
CSS
|
/* make borders from inner content rounded */
|
||
|
@media all and (display-mode: browser) {
|
||
|
#tabbrowser-tabpanels browser[type="content"] {
|
||
|
color-scheme: env(-moz-content-preferred-color-scheme);
|
||
|
border-top-left-radius: 16px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* comment this out for padding around the content */
|
||
|
/* .browserContainer{
|
||
|
padding-right: 10px !important;
|
||
|
padding-bottom: 10px !important;
|
||
|
} */
|