Files
codiki-hexagonal/frontend/src/design_system/button.scss
2024-10-22 08:17:07 +02:00

26 lines
463 B
SCSS

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;
}
}
}
a.button {
text-decoration: none;
}