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

25 lines
486 B
SCSS
Raw Normal View History

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