Pimp the details/summary elements

This commit is contained in:
Michal Jirku 2021-04-19 21:21:50 +02:00
parent 94d10b07e6
commit 53004a990c
1 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,17 @@
details summary {
cursor: pointer;
color: $blue;
&:hover {
text-decoration: underline;
}
}
details[open] summary {
color: $default-color;
&:hover {
text-decoration: none;
}
}