lostplaces-frontend/components/01_Atoms/button/_button.scss

17 lines
262 B
SCSS
Raw Normal View History

2020-07-31 22:22:17 +02:00
.LP-Button{
2020-08-01 10:27:23 +02:00
background-color: $-light-brown;
color: $-grey;
2020-07-31 22:22:17 +02:00
border: none;
padding: 8px 14px;
border-radius: 2px;
font-weight: bold;
2020-08-01 10:27:23 +02:00
&:active{
background-color: $-wine-red;
color:$-almost-white;
}
&--cancel{
background-color: $-almost-white;
2020-07-31 22:22:17 +02:00
}
}