mirror of
https://github.com/picocss/pico.git
synced 2025-02-24 00:39:20 -05:00
11 lines
238 B
SCSS
11 lines
238 B
SCSS
|
/**
|
||
|
* Light theme (Default) [Additions for docs]
|
||
|
* Can be forced with data-theme="light"
|
||
|
*/
|
||
|
|
||
|
[data-theme="light"],
|
||
|
:root:not([data-theme="dark"]) {
|
||
|
--nav-background: #{rgba($white, .7)};
|
||
|
--nav-border: #{rgba($grey-500, .2)};
|
||
|
}
|