Add submit button component and style it.

This commit is contained in:
Florian THIERRY
2024-08-22 10:26:38 +02:00
parent b1d9344574
commit f00fb103ba
10 changed files with 139 additions and 9 deletions

View File

@@ -43,6 +43,20 @@
color: #3f51b5;
text-decoration: none;
}
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;
}
}
}
label {