Fixed buttons style on the author page

This commit is contained in:
kvakazyambra 2023-10-31 19:44:00 +03:00
parent 3a5b279f78
commit d64449fb33
2 changed files with 44 additions and 2 deletions

View File

@ -76,6 +76,39 @@
@include media-breakpoint-down(lg) { @include media-breakpoint-down(lg) {
flex-wrap: wrap; flex-wrap: wrap;
} }
.buttonSubscribe {
aspect-ratio: auto;
background-color: #000;
border: 1px solid #000;
border-radius: 0.8rem;
color: #fff;
float: none;
padding-bottom: 0.6rem;
padding-top: 0.6rem;
width: 10em;
.icon {
margin-right: 0.5em;
img {
filter: invert(1);
}
}
&:hover {
background: #fff;
color: #000;
.icon img {
filter: invert(0);
}
}
img {
vertical-align: text-top;
}
}
} }
.authorDetails { .authorDetails {

View File

@ -202,8 +202,17 @@ export const AuthorCard = (props: Props) => {
when={isProfileOwner()} when={isProfileOwner()}
fallback={ fallback={
<div class={styles.authorActions}> <div class={styles.authorActions}>
<Button onClick={handleSubscribe} value={followButtonText()} /> <Button
<Button variant={'secondary'} value={t('Message')} onClick={initChat} /> onClick={handleSubscribe}
value={followButtonText()}
class={styles.buttonSubscribe}
/>
<Button
variant={'secondary'}
value={t('Message')}
onClick={initChat}
class={styles.buttonSubscribe}
/>
</div> </div>
} }
> >