mango-token-sale/styles/index.css

30 lines
342 B
CSS
Raw Normal View History

2021-04-25 08:03:30 -07:00
@tailwind base;
@tailwind components;
@tailwind utilities;
/* 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 {
@apply text-fgd-4 text-sm;
}
button {
@apply font-bold;
}
.default-transition {
@apply transition-all duration-300;
}