basic install

This commit is contained in:
Julian Krauser 2024-08-22 11:48:04 +02:00
parent 9d7d1cef8e
commit 62990170de
20 changed files with 10349 additions and 0 deletions

36
src/main.css Normal file
View file

@ -0,0 +1,36 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #c9c9c9 transparent;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 5px;
height: 5px;
}
*::-webkit-scrollbar-track {
background: transparent; /*f1f1f1;*/
}
*::-webkit-scrollbar-thumb {
background-color: #c9c9c9;
border-radius: 12px;
border: 0px solid #ffffff;
}
html,
body {
@apply h-full w-screen m-0 p-0 overflow-hidden bg-white;
height: 100svh;
}
#app {
@apply w-full h-full overflow-hidden flex flex-col;
}