add padding to the details if not set as the last element

This commit is contained in:
buzz-lightsnack-2007 2024-05-13 15:54:46 +08:00
parent 9187447b2a
commit 082f423332

View file

@ -89,5 +89,9 @@ body[role="window"] {
}
summary + details {
padding-top: 1em;
padding-top: 1em;
}
summary + details:not(:last-child) {
padding-bottom: 1em;
}