tale/_sass/details.scss

18 lines
201 B
SCSS
Raw Normal View History

details summary {
cursor: pointer;
2021-04-19 19:21:50 +00:00
color: $blue;
&:hover {
text-decoration: underline;
}
}
2021-04-19 19:21:50 +00:00
details[open] summary {
color: $default-color;
&:hover {
text-decoration: none;
}
}