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