21 lines
354 B
CSS
21 lines
354 B
CSS
@font-face {
|
|
font-family: "Abel";
|
|
src: url(Abel-Regular.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
.font-abel {
|
|
font-family: "Abel", sans-serif;
|
|
}
|
|
|
|
.antialiased {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.min-h-screen {
|
|
min-height: 100vh;
|
|
}
|