mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
22 lines
528 B
CSS
22 lines
528 B
CSS
/*
|
|
* calendar scroll
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* under the MIT license
|
|
*/
|
|
|
|
#calendar-scroll-to-week {
|
|
background: var(--theme--interactive_hover);
|
|
border: 1px solid transparent;
|
|
font-size: var(--theme--font_label-size);
|
|
color: var(--theme--text);
|
|
height: 24px;
|
|
border-radius: 3px;
|
|
line-height: 1.2;
|
|
padding: 0 0.5em;
|
|
margin-right: 5px;
|
|
}
|
|
#calendar-scroll-to-week:hover {
|
|
background: transparent;
|
|
border: 1px solid var(--theme--interactive_hover);
|
|
}
|