REFACTOR Moving author list component from dynamiques theme to carhop theme

This commit is contained in:
Antoine M 2026-03-20 17:02:41 +01:00
parent 213a4f078e
commit 2ba5f40892
2 changed files with 13 additions and 0 deletions

View File

@ -47,6 +47,7 @@
@import './components/post-tag.css';
@import './components/content-wrapper.css';
@import './components/content-area.css';
@import './components/authors-list.css';
/* ########### EDITOR CONTENT ############ */
@import './editor-content/entry-content.css';

View File

@ -0,0 +1,12 @@
.authors-list {
@apply mb-20;
&__title {
@apply text-3xl font-medium mb-4 uppercase;
}
&__article-title {
@apply mb-8 underline underline-offset-8 decoration-1 opacity-90;
}
.author-card {
@apply mb-8;
}
}