24 lines
519 B
CSS
24 lines
519 B
CSS
#article-toolbar {
|
|
@apply col-span-2 container mx-auto;
|
|
|
|
.tablist {
|
|
@apply flex gap-12 border-b border-primary;
|
|
button {
|
|
@apply text-xl mt-8 nunito pb-4 flex items-center gap-4;
|
|
.icon {
|
|
@apply w-8 h-8 block;
|
|
}
|
|
|
|
&[aria-selected='true'] {
|
|
@apply text-primary border-b-4 border-primary;
|
|
.icon {
|
|
@apply filter-primary;
|
|
}
|
|
}
|
|
&[aria-selected='false'] {
|
|
@apply text-black opacity-40;
|
|
}
|
|
}
|
|
}
|
|
}
|