21 lines
358 B
CSS
21 lines
358 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
font-variant-ligatures: no-common-ligatures;
|
|
font-family: 'Navi Body' !important;
|
|
}
|
|
|
|
body {
|
|
margin: 0 auto;
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Navi Body';
|
|
font-style: normal;
|
|
src: url(./assets/fonts/NaviBodyVarRoman.ttf) format('truetype');
|
|
}
|