29 lines
362 B
SCSS
29 lines
362 B
SCSS
.project-description {
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
@apply mb-2;
|
|
}
|
|
|
|
h2 {
|
|
@apply mt-10 text-3xl;
|
|
}
|
|
|
|
h3 {
|
|
@apply mt-6 indent-2 text-xl;
|
|
}
|
|
|
|
h4 {
|
|
@apply mt-6 indent-4 text-base;
|
|
}
|
|
|
|
h5 {
|
|
@apply mt-6 indent-6 text-base;
|
|
}
|
|
|
|
h6 {
|
|
@apply mt-6 indent-8 text-base;
|
|
}
|
|
}
|