adjust styling

This commit is contained in:
Tom (plebeius.eth)
2024-07-02 19:05:48 +02:00
parent 6ba2909df5
commit af800d559b
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -25,6 +25,10 @@
padding-bottom: 0.5em; padding-bottom: 0.5em;
} }
.infoBox {
border: 1px solid black;
}
.boardsBox { .boardsBox {
overflow: hidden; overflow: hidden;
min-height: 150px; min-height: 150px;
+1 -1
View File
@@ -47,7 +47,7 @@ const SearchBar = () => {
const InfoBox = () => { const InfoBox = () => {
const { t } = useTranslation(); const { t } = useTranslation();
return ( return (
<div className={styles.box}> <div className={`${styles.box} ${styles.infoBox}`}>
<div className={styles.infoboxBar}> <div className={styles.infoboxBar}>
<h2>{t('what_is_plebchan')}</h2> <h2>{t('what_is_plebchan')}</h2>
</div> </div>
+1 -1
View File
@@ -1,5 +1,5 @@
.content { .content {
margin-bottom: 150px; margin-bottom: 15px;
overflow-x: hidden; overflow-x: hidden;
} }