33 lines
555 B
CSS
33 lines
555 B
CSS
.page-single {
|
|
.post-toolbar {
|
|
@apply px-8;
|
|
}
|
|
|
|
.tags__title {
|
|
@apply text-lg uppercase font-semibold mt-0 my-4 nunito;
|
|
}
|
|
|
|
.tags-list {
|
|
@apply flex flex-wrap gap-4;
|
|
}
|
|
|
|
.content-wrapper {
|
|
&[data-active-tab='post'] {
|
|
#post-authors {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
&[data-active-tab='authors'] {
|
|
.post-content {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
&[data-active-tab='informations'] {
|
|
#post-authors,
|
|
.post-content {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
}
|
|
}
|