11 lines
268 B
CSS
11 lines
268 B
CSS
|
@import '@prokyon/styles/global.css';
|
||
|
|
||
|
@import "./variables.css";
|
||
|
|
||
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
|
||
|
|
||
|
body {
|
||
|
@apply bg-white text-black text-sm;
|
||
|
font-family: 'Poppins', sans-serif;
|
||
|
font-weight: lighter;
|
||
|
}
|