43 lines
753 B
SCSS
43 lines
753 B
SCSS
.button {
|
|
background: transparent;
|
|
border: 2px solid $color-silver-dark;
|
|
padding: 5px 15px;
|
|
border-radius: 3px;
|
|
font-family: $sans-serif-font-family;
|
|
font-weight: $font-weight-regular;
|
|
display: inline-flex;
|
|
cursor: pointer;
|
|
|
|
&--active {
|
|
border-color: $color-brand;
|
|
}
|
|
|
|
&--primary {
|
|
border-color: $color-brand;
|
|
}
|
|
|
|
&--white-bg {
|
|
background-color: $color-white;
|
|
}
|
|
&--disabled {
|
|
border: 2px solid $color-silver-light;
|
|
background-color: $color-silver-light;
|
|
}
|
|
}
|
|
|
|
.icon-button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 50px;
|
|
height: 50px;
|
|
|
|
&__icon {
|
|
width: 25px;
|
|
height: 25px;
|
|
fill: $color-silver-dark;
|
|
cursor: pointer;
|
|
justify-self: center;
|
|
}
|
|
}
|