mango-token-sale/styles/index.css

34 lines
397 B
CSS
Raw Normal View History

2021-04-25 08:03:30 -07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--primary: theme('colors.primary.light');
}
/* base */
* {
@apply m-0 p-0;
}
body {
@apply bg-bkg-1 text-fgd-1 text-base font-body tracking-wide;
}
h2 {
@apply text-xl mb-1 font-bold;
}
p {
2021-07-06 06:25:55 -07:00
@apply text-fgd-3 text-sm;
}
button {
@apply font-bold;
}
.default-transition {
@apply transition-all duration-300;
}