20 lines
304 B
CSS
20 lines
304 B
CSS
.card-frequent-question {
|
|
@apply shadowed p-8 rounded-3xl;
|
|
|
|
&__icon {
|
|
max-width: 80px;
|
|
}
|
|
&__title {
|
|
@apply mt-4;
|
|
@apply text-xl pb-4 font-bold;
|
|
}
|
|
|
|
&__tags_container {
|
|
@apply flex flex-wrap gap-x-3;
|
|
|
|
.tag {
|
|
@apply py-1 px-4 rounded-lg;
|
|
}
|
|
}
|
|
}
|