mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
22 lines
585 B
CSS
22 lines
585 B
CSS
/*
|
|
* focus mode
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (c) 2020 Arecsu
|
|
* under the MIT license
|
|
*/
|
|
|
|
.notion-sidebar-container[style*='width: 0px;'] + .notion-frame {
|
|
height: calc(
|
|
100% - (var(--configured--dragarea_height, 10px) + 45px)
|
|
) !important;
|
|
}
|
|
.notion-sidebar-container[style*='width: 0px;'] + .notion-frame .notion-topbar {
|
|
opacity: 0 !important;
|
|
transition: opacity 200ms ease-in-out !important;
|
|
}
|
|
.notion-sidebar-container[style*='width: 0px;']
|
|
+ .notion-frame
|
|
.notion-topbar:hover {
|
|
opacity: 1 !important;
|
|
}
|