Minor style fixes

This commit is contained in:
mrfry 2020-11-30 14:07:21 +01:00
parent 1a02ae2e98
commit e46e2d2370
2 changed files with 5 additions and 1 deletions

View file

@ -14,7 +14,7 @@ export default function Sidebar(props) {
> >
{'>'} {'>'}
</div> </div>
<div>{props.children}</div> <div className={styles.content}>{props.children}</div>
</div> </div>
) )
} }

View file

@ -23,3 +23,7 @@
.closeBorder:hover { .closeBorder:hover {
background-color: #333; background-color: #333;
} }
.content {
width: 100%;
}