21 lines
481 B
CSS
21 lines
481 B
CSS
.demo-components {
|
|
.component {
|
|
@apply border-b border-neutral-400 py-32;
|
|
}
|
|
.component-explanation {
|
|
@apply max-w-screen-lg mx-auto px-8 text-center py-6;
|
|
&__title {
|
|
@apply text-3xl font-bold text-center pb-2;
|
|
}
|
|
&__description {
|
|
@apply text-neutral-500 text-lg font-medium mx-auto pt-0 max-w-lg mx-auto;
|
|
}
|
|
}
|
|
.buttons {
|
|
@apply py-32;
|
|
.buttons-example {
|
|
@apply flex justify-center gap-8;
|
|
}
|
|
}
|
|
}
|