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 {
display: none;
}
.subscribeButton {
float: right;
}
}
@@ -41,7 +41,14 @@ export const DesktopBoardButtons = ({ address }: BoardButtonsProps) => {
return (
<div className={styles.desktopBoardButtons}>
<hr />
<SubscribeButton address={address} />
[
<OptionsButton />
] [
<CatalogButton />]
<span className={styles.subscribeButton}>
[
<SubscribeButton address={address} />]
</span>
</div>
);
};