21 lines
392 B
SCSS
21 lines
392 B
SCSS
.button {
|
|
padding: 4px 15px;
|
|
background: var(--main-color);
|
|
border-radius: var(--border-radius);
|
|
text-decoration: none;
|
|
transition-duration: .2s;
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
|
|
&.secondary {
|
|
background: #565656;
|
|
|
|
&:hover {
|
|
background: #303030;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background: var(--main-hover-color);
|
|
}
|
|
} |