chore: init adonis

This commit is contained in:
Sonny
2024-04-27 15:49:47 +02:00
committed by Sonny
parent 219e5e3aed
commit 1386db6935
259 changed files with 7184 additions and 18173 deletions

36
inertia/css/app.css Normal file
View File

@@ -0,0 +1,36 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
* {
margin: 0;
padding: 0;
}
html,
body,
#app {
background-color: #f7f8fa;
font-family: 'Poppins', sans-serif;
color: #46444c;
height: 100%;
width: 100%;
}
.title {
font-size: 42px;
font-weight: 500;
color: #5a45ff;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100%;
width: 100%;
}
a {
text-decoration: underline;
color: #5a45ff;
}