Converted the css to sass

This commit is contained in:
2023-08-30 19:15:19 +02:00
parent 3f3387b1d1
commit 89b6d7eeb7
9 changed files with 81 additions and 66 deletions

22
styles/_styles.scss Normal file
View File

@@ -0,0 +1,22 @@
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import "header";
@import "anchoring";
@import "carousel";
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
--body-BackgroundColor: #f5f5f5;
--primaryColor: #124498;
--header-BackgroundColor: var(--primaryColor);
--header-textColor: #ffd39c;
--header-Height: 5.375rem;
}
body {
font-family: 'Questrial', sans-serif;
background-color: var(--body-BackgroundColor);
}