mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
missing padding
This commit is contained in:
+5
-1
@@ -24,4 +24,8 @@
|
|||||||
.button:hover {
|
.button:hover {
|
||||||
color: var(--button-desktop-text-color-hover);
|
color: var(--button-desktop-text-color-hover);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notBlocked {
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|||||||
+1
-1
@@ -50,7 +50,7 @@ const BlockedAddressesSetting = () => {
|
|||||||
</ul>
|
</ul>
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
t('you_have_not_blocked')
|
<div className={styles.notBlocked}>{t('you_have_not_blocked')}</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
+5
-1
@@ -24,4 +24,8 @@
|
|||||||
.button:hover {
|
.button:hover {
|
||||||
color: var(--button-desktop-text-color-hover);
|
color: var(--button-desktop-text-color-hover);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notSubscribed {
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ const SubscriptionsSetting = () => {
|
|||||||
</ul>
|
</ul>
|
||||||
</>
|
</>
|
||||||
) : (
|
) : (
|
||||||
t('not_subscribed_to_any_board')
|
<div className={styles.notSubscribed}>{t('not_subscribed_to_any_board')}</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user