ttcMD: adds additional formatting to card to make an unstyled block

ttcMD components: tweaked the look of accordions to stack together properly
This commit is contained in:
2024-03-14 06:58:04 -06:00
parent 192479020d
commit 606a90b050
4 changed files with 31 additions and 11 deletions

View File

@@ -60,6 +60,19 @@
.skeleton {
@apply animate-pulse bg-black/20 rounded-md text-white/0;
}
/* .accordion {
@apply first-of-type:rounded-t-md last-of-type:rounded-b-md;
} */
.accordion:not(.accordion + .accordion) {
@apply rounded-t-md;
}
.accordion:has(+ .accordion) {
@apply border-b border-black/20;
}
.accordion:not(:has(+ .accordion)) {
@apply rounded-b-md;
}
}
@keyframes identifier {