18 lines
350 B
CSS
18 lines
350 B
CSS
|
@font-face {
|
||
|
font-family: "Karla";
|
||
|
src: url("assets/fonts/Karla-Regular.ttf") format("truetype");
|
||
|
font-weight: 400;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "Karla";
|
||
|
src: url("assets/fonts/Karla-Bold.ttf") format("truetype");
|
||
|
font-weight: 700;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|