Style
Component
CSS
.component {
display: flex;
justify-content: center;
align-items: center;
}
.message {
color: #333;
}SCSS
.component {
display: flex;
justify-content: center;
align-items: center;
.message {
color: #333;
}
}Tailwind w/ @apply
.component {
@apply flex justify-center items-center;
}
.message {
@apply text-slate-800;
}