add desktop board buttons

This commit is contained in:
plebeius.eth
2024-03-22 13:06:50 +01:00
parent eace4f02b9
commit e52176054a
2 changed files with 12 additions and 1 deletions
@@ -17,4 +17,8 @@
.mobileBoardButtons { .mobileBoardButtons {
display: none; display: none;
} }
.subscribeButton {
float: right;
}
} }
@@ -41,7 +41,14 @@ export const DesktopBoardButtons = ({ address }: BoardButtonsProps) => {
return ( return (
<div className={styles.desktopBoardButtons}> <div className={styles.desktopBoardButtons}>
<hr /> <hr />
<SubscribeButton address={address} /> [
<OptionsButton />
] [
<CatalogButton />]
<span className={styles.subscribeButton}>
[
<SubscribeButton address={address} />]
</span>
</div> </div>
); );
}; };