mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 08:32:48 +00:00
21 lines
297 B
SCSS
21 lines
297 B
SCSS
.button {
|
|
border: none;
|
|
border-radius: 3px;
|
|
color: $white;
|
|
background: $lightGray;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: lighten($lightGray, 5%);
|
|
}
|
|
}
|
|
|
|
.button--primary {
|
|
background: $primaryBlue;
|
|
|
|
&:hover {
|
|
background: lighten($primaryBlue, 2%);
|
|
}
|
|
}
|