16 lines
383 B
CSS
16 lines
383 B
CSS
.homegrade-data-exports-page {
|
|
@apply grid sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4;
|
|
.export-card {
|
|
@apply !rounded-2xl border-none
|
|
flex flex-col items-center justify-center !p-8
|
|
gap-8 text-center;
|
|
max-width: unset;
|
|
h2 {
|
|
@apply !m-0 text-secondary max-w-xs leading-5 pb-2;
|
|
}
|
|
&__illustration {
|
|
max-width: 200px;
|
|
}
|
|
}
|
|
}
|