missing padding

This commit is contained in:
Tom (plebeius.eth)
2025-03-05 12:12:04 +01:00
parent b686ca3dd0
commit 761f0853a1
4 changed files with 12 additions and 4 deletions
@@ -24,4 +24,8 @@
.button:hover {
color: var(--button-desktop-text-color-hover);
cursor: pointer;
}
}
.notBlocked {
padding-bottom: 10px;
}
@@ -50,7 +50,7 @@ const BlockedAddressesSetting = () => {
</ul>
</>
) : (
t('you_have_not_blocked')
<div className={styles.notBlocked}>{t('you_have_not_blocked')}</div>
)}
</div>
);
@@ -24,4 +24,8 @@
.button:hover {
color: var(--button-desktop-text-color-hover);
cursor: pointer;
}
}
.notSubscribed {
padding-bottom: 10px;
}
@@ -63,7 +63,7 @@ const SubscriptionsSetting = () => {
</ul>
</>
) : (
t('not_subscribed_to_any_board')
<div className={styles.notSubscribed}>{t('not_subscribed_to_any_board')}</div>
)}
</div>
);