style(post page): add padding to buttons on mobile

This commit is contained in:
plebeius.eth
2024-04-04 12:06:37 +02:00
parent e960f791b9
commit 4cef89eee3
2 changed files with 6 additions and 1 deletions
@@ -12,6 +12,11 @@
all: unset; all: unset;
} }
.mobilePostPageButtonsSecondRow {
padding-top: 5px;
padding-bottom: 20px;
}
@media (max-width: 640px) { @media (max-width: 640px) {
.desktopBoardButtons { .desktopBoardButtons {
display: none; display: none;
@@ -60,7 +60,7 @@ export const MobileBoardButtons = ({ address }: BoardButtonsProps) => {
<ReturnButton address={address} /> <ReturnButton address={address} />
<CatalogButton address={address} /> <CatalogButton address={address} />
<BottomButton /> <BottomButton />
<div> <div className={styles.mobilePostPageButtonsSecondRow}>
<OptionsButton /> <OptionsButton />
<SubscribeButton address={address} /> <SubscribeButton address={address} />
</div> </div>