Subscribe topic button style fixes

This commit is contained in:
Alexey Khaov 2023-01-25 01:00:10 +03:00
parent 5de1441895
commit a2f80f90fd
3 changed files with 16 additions and 3 deletions

View File

@ -305,5 +305,5 @@
}
.isSubscribing {
color: transparent;
opacity: 0.5;
}

View File

@ -118,9 +118,10 @@
}
.isSubscribing {
color: transparent;
opacity: 0.5;
}
.isSubscribed {
background: #000;
color: #fff;
}

View File

@ -187,6 +187,11 @@ button {
cursor: pointer;
font-family: inherit;
padding: 0;
&[disabled] {
cursor: default;
opacity: 0.5 !important;
}
}
.button {
@ -253,6 +258,11 @@ button {
color: #fff;
opacity: 1;
}
&[disabled]:hover {
background: #fff;
color: #000;
}
}
.button--content-index {
@ -710,7 +720,9 @@ astro-island {
.mode-switcher {
@include font-size(1.5rem);
text-align: right;
@include media-breakpoint-up(md) {
text-align: right;
}
}
.mode-switcher__control {