Add hover effect to post button

This commit is contained in:
styppo 2023-01-28 00:22:40 +00:00
parent 2422782015
commit ff2cc4d5d9
No known key found for this signature in database
GPG Key ID: 3AAA685C50724C28
2 changed files with 6 additions and 1 deletions

View File

@ -160,6 +160,11 @@ menu {
font-size: 1.2rem;
border-radius: 999px;
margin-top: 20px;
transition: 200ms ease;
&:hover {
background-color: rgba($color: $color-primary, $alpha: 0.8);
//filter: brightness(110%);
}
.icon {
display: none;
}

View File

@ -62,7 +62,7 @@ a {
&-primary {
background-color: $color-primary;
&:hover {
background-color: rgba($color: $color-primary, $alpha: 0.7);
background-color: rgba($color: $color-primary, $alpha: 0.8);
border-color: rgba($color: $color-primary, $alpha: 0.3);
}
&:disabled {