Some initial sass refactoring (breaking change!)

Well, it's not a breaking change if you don't restyle duckquill heavily :)
This commit is contained in:
David Lapshin
2024-05-20 16:14:58 +03:00
parent 5cfa5aa0c8
commit d77ebed269
12 changed files with 365 additions and 372 deletions

9
sass/_details.scss Normal file
View File

@ -0,0 +1,9 @@
details {
border-radius: var(--rounded-corner);
background-color: var(--fg-muted-1);
padding: 1rem;
&>summary {
cursor: pointer;
}
}