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
37 lines
634 B
SCSS
37 lines
634 B
SCSS
.App {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
animation: fadein 250ms both;
|
|
|
|
& h1 {
|
|
display: inline-block;
|
|
border-right: 1px solid rgba(0, 0, 0, 0.3);
|
|
margin: 0;
|
|
margin-right: 20px;
|
|
padding: 10px 23px 10px 0;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
vertical-align: top;
|
|
}
|
|
|
|
& h2 {
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
line-height: inherit;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes fadein {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|