handling hidden and isLoading attribute

This commit is contained in:
Antoine M 2023-12-06 16:25:46 +01:00
parent 74b9be31f7
commit 3e4f832273

View File

@ -12,10 +12,15 @@ html {
font-weight: bold;
}
*[hidden='true'] {
*[hidden='true'],
*[hidden]:not([hidden='false']) {
@apply !hidden;
}
section[isLoading] {
@apply opacity-30;
}
details {
@apply bg-white shadowed rounded-2xl mb-4 px-8 py-6;
summary {