2023-03-14 13:47:44 +07:00
|
|
|
/* Write your global styles here, in PostCSS syntax */
|
|
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
2023-04-04 12:38:01 +07:00
|
|
|
@layer base {
|
2023-04-05 01:11:59 +07:00
|
|
|
html {
|
|
|
|
|
font-family: 'Noto Sans Thai', sans-serif;
|
|
|
|
|
}
|
2023-04-04 12:38:01 +07:00
|
|
|
h1 {
|
|
|
|
|
@apply text-4xl;
|
|
|
|
|
}
|
|
|
|
|
h2 {
|
|
|
|
|
@apply text-2xl;
|
|
|
|
|
}
|
|
|
|
|
ul{
|
|
|
|
|
@apply list-disc
|
|
|
|
|
}
|
|
|
|
|
ol{
|
|
|
|
|
@apply list-decimal
|
|
|
|
|
}
|
2023-04-05 01:11:59 +07:00
|
|
|
.cardxl{
|
|
|
|
|
padding-right: 2rem;
|
|
|
|
|
}
|
|
|
|
|
@media only screen and (max-width: 1024px) {
|
|
|
|
|
.cardxl{
|
|
|
|
|
padding-right: 0rem !important;
|
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2023-04-04 17:55:31 +07:00
|
|
|
}
|