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;
}
.mobilePostPageButtonsSecondRow {
padding-top: 5px;
padding-bottom: 20px;
}
@media (max-width: 640px) {
.desktopBoardButtons {
display: none;
@@ -60,7 +60,7 @@ export const MobileBoardButtons = ({ address }: BoardButtonsProps) => {
<ReturnButton address={address} />
<CatalogButton address={address} />
<BottomButton />
<div>
<div className={styles.mobilePostPageButtonsSecondRow}>
<OptionsButton />
<SubscribeButton address={address} />
</div>