/* * notion-enhancer core: components * (c) 2021 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ #enhancer--tooltip { position: absolute; background: var(--theme--ui_tooltip); font-size: 11.5px; padding: 0.15rem 0.4rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; border-radius: 3px; max-width: 20rem; display: none; } #enhancer--tooltip p { margin: 0.25rem 0; } #enhancer--tooltip p:first-child { color: var(--theme--ui_tooltip-title); } #enhancer--tooltip p:not(:first-child) { color: var(--theme--ui_tooltip-description); }