Initiate design system and refactor login page buttons.

This commit is contained in:
Florian THIERRY
2024-10-21 11:46:35 +02:00
committed by Florian THIERRY
parent dae0a4b78d
commit 7c5cc38cff
6 changed files with 27 additions and 16 deletions

View File

@@ -0,0 +1,22 @@
button, a.button {
padding: .8em 1.2em;
border-radius: 10em;
border: none;
background-color: #3f51b5;
color: white;
transition: background-color .2s ease-in-out;
&:hover {
background-color: #5b6ed8;
cursor: pointer;
}
&.secondary {
color: #3f51b5;
background-color: white;
&:hover {
background-color: #f2f4ff;
}
}
}