12 lines
221 B
CSS
12 lines
221 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.card {
|
|
@apply bg-stone-200 mx-auto p-12 rounded-xl text-stone-800 w-96
|
|
}
|
|
|
|
.section {
|
|
@apply container gap-16 grid grid-cols-2 max-w-screen-xl mx-auto
|
|
}
|