22 lines
397 B
SCSS
22 lines
397 B
SCSS
.button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
background: #fff;
|
|
border-radius: 100vh;
|
|
padding: 12px 24px;
|
|
text-decoration: none;
|
|
font-size: rem(18px);
|
|
color: $color-text;
|
|
font-weight: 600;
|
|
border: none;
|
|
|
|
// Icon
|
|
img {
|
|
display: block;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
&--pink {
|
|
background: $color-secondary-light;
|
|
}
|
|
} |