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

23 lines
368 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-12 18:28:37 +02:00
cursor: pointer;
2020-07-31 22:22:17 +02:00
2020-08-01 10:27:23 +02:00
&:active{
background-color: $-wine-red;
color:$-almost-white;
}
&--cancel{
2020-08-12 18:28:37 +02:00
background-color: $-grey;
color: $-almost-white;
&:active{
color: $-grey;
background-color: $-almost-white;
}
2020-07-31 22:22:17 +02:00
}
}