mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 15:35:35 +00:00
- Ajout création, édition, suppression catégories & liens - Ajout auth google - Ajout/modification style pour catégories & liens - Ajout component générique pour bouton, inputs, checkbox & selector - Gestion des messages d'erreur/succès/infos via component dédié - Ajout component FormLayout pour les pages création, édition, suppression catégories & liens - Page custom 404, 500 & signin - Modification schéma DB
42 lines
576 B
SCSS
42 lines
576 B
SCSS
.create-app {
|
|
height: fit-content;
|
|
width: 680px;
|
|
margin-top: 150px;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
|
|
& h2 {
|
|
color: #3f88c5;
|
|
}
|
|
|
|
& form {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
gap: 5px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
& .input-field {
|
|
display: flex;
|
|
gap: 5px;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 680px) {
|
|
.create-app {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@keyframes fadein {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|