mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-07 18:56:00 -05:00
32 lines
566 B
SCSS
32 lines
566 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import "select2";
|
|
@import "inputs-global";
|
|
@import "modal";
|
|
@import "table";
|
|
|
|
@layer base {
|
|
@font-face {
|
|
font-family: 'Exo 2';
|
|
|
|
src: url('../fonts/Exo2-VariableFont_wght.ttf');
|
|
}
|
|
}
|
|
|
|
.headline {
|
|
@apply text-2xl font-semibold;
|
|
|
|
&::after {
|
|
@apply block w-full mt-2;
|
|
content: "";
|
|
border-top: 0.1rem solid;
|
|
border-image: linear-gradient(to right, theme('colors.indigo.600') 10%, transparent) 1;
|
|
}
|
|
}
|
|
|
|
.weblink {
|
|
@apply text-web-main filter brightness-[120%] font-semibold;
|
|
}
|