mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-10 15:39:01 +00:00
33 lines
947 B
CSS
33 lines
947 B
CSS
/**
|
|
* notion-enhancer
|
|
* (c) 2022 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
@import url("./variables.css");
|
|
|
|
.notion-enhancer--menu-modal[data-open="true"] {
|
|
pointer-events: auto;
|
|
opacity: 1;
|
|
}
|
|
.notion-enhancer--menu-modal > :nth-child(2) > iframe {
|
|
background: var(--theme--bg-secondary);
|
|
box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px,
|
|
rgba(15, 15, 15, 0.2) 0px 5px 10px, rgba(15, 15, 15, 0.4) 0px 15px 40px;
|
|
border-radius: 5px;
|
|
width: 1150px;
|
|
height: calc(100vh - 100px);
|
|
max-width: calc(100vw - 100px);
|
|
max-height: 715px;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
transform: scale(0.95);
|
|
transition: opacity 100ms ease-in, transform 0s ease-in 200ms;
|
|
}
|
|
.notion-enhancer--menu-modal[data-open="true"] > :nth-child(2) > iframe {
|
|
pointer-events: auto;
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
transition: transform 80ms ease-in;
|
|
}
|