Created
October 22, 2023 15:31
-
-
Save sisi-sh/6d1e3f259299f34b168b83c016b90aae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* title */ | |
| .daily-note-title { | |
| font-size: var(--font-smallest) !important; | |
| padding: var(--size-4-1) var(--context-padding) !important; | |
| color: var(--text-faint) !important; | |
| max-width: 100% !important; | |
| transition: color .3s ease; | |
| } | |
| .daily-note-title:hover { | |
| cursor: pointer; | |
| background: none; | |
| color: var(--link-color-hover) !important; | |
| } | |
| /* blank day button */ | |
| .dn-blank-day { | |
| max-width: 100% !important; | |
| cursor: pointer; | |
| color: var(--background-modifier-border) !important; | |
| } | |
| .dn-blank-day.svelte-1n2mcl9:hover { | |
| padding: 20px 0; | |
| background-color: var(--background-secondary); | |
| color: var(--text-normal); | |
| color: var(--text-color) !important; | |
| } | |
| /* hover */ | |
| .daily-note-view .daily-note-container:before { | |
| background-color: var(--background-modifier-border); | |
| width: 100% !important; | |
| margin-bottom: 10px; | |
| } | |
| .daily-note { | |
| padding-bottom: 0 !important; | |
| margin-bottom: 10px !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment