12 lines
184 B
CSS
12 lines
184 B
CSS
|
|
@font-face {
|
||
|
|
font-family: 'font';
|
||
|
|
src: url('font.ttf') format('truetype');
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: 'font' !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|