feat(style): make it obvious that toggled text is not body text

This commit is contained in:
George Cushen 2022-02-16 21:55:02 +00:00
commit 92cd830811

View file

@ -33,3 +33,14 @@ summary:focus {
// Override Webkit setting an outline.
outline: none;
}
// Make it obvious that toggled text is toggled and not body text.
details p {
margin-left: 0.3rem;
padding-left: 0.5rem;
border-left: 1px solid rgba(0, 0, 0, 0.8);
}
.dark details p {
border-left: 1px solid rgba(255, 255, 255, 0.8);
}