mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
32 lines
651 B
CSS
Executable File
32 lines
651 B
CSS
Executable File
/* Hide header when tabs not on top */
|
|
#browser:not(.tabs-top) #header {
|
|
min-height: 0;
|
|
}
|
|
|
|
/* Set UrlBar l/r padding */
|
|
#browser:not(.tabs-top) .UrlBar {
|
|
padding-left: 30px;
|
|
padding-right: 130px
|
|
}
|
|
|
|
/* Fix V icon size */
|
|
#browser:not(.tabs-top) .vivaldi svg {
|
|
height: 22px;
|
|
width: 22px;
|
|
}
|
|
|
|
/* Reset header on windowed/minimal-ui/bottom-UrlBar */
|
|
#browser.normal #header,
|
|
#browser.minimal-ui #header,
|
|
#browser.address-bottom #header {
|
|
min-height: 25px;
|
|
}
|
|
|
|
/* Reset UrlBar on windowed/minimal-ui/bottom-UrlBar */
|
|
#browser.normal .UrlBar,
|
|
#browser.minimal-ui .UrlBar,
|
|
#browser.address-bottom .UrlBar {
|
|
padding-left: unset;
|
|
padding-right: unset;
|
|
}
|