Refactor Title And Loading

This commit is contained in:
Florian RICHER 2023-12-09 16:49:05 +01:00
parent 8845db8993
commit f8c9888d80
10 changed files with 76 additions and 100 deletions

View file

@ -8,5 +8,6 @@
@import './social_links.css';
@import './tag.css';
@import './timeline.css';
@import './title.css';
@import './top_component.css';
/*@import './mermaid.css';*/

View file

@ -28,7 +28,7 @@
}
& h1, & h2, & h3, & h4, & h5, & h6 {
@apply my-5 font-bold;
@apply my-3 font-bold;
}
& p {
@ -67,7 +67,7 @@
.post {
& > div {
@apply mx-auto max-w-3xl;
@apply flex flex-col gap-5;
@apply flex flex-col;
}
& pre > code {

9
style/title.css Normal file
View file

@ -0,0 +1,9 @@
@layer components {
header {
@apply flex flex-row items-center justify-between flex-wrap mx-5;
& h1 {
@apply text-center text-6xl mb-5 flex-1;
}
}
}