feat: added other banners, moved the rendering of board banners to the Board component

This commit is contained in:
limited_dev 2023-02-13 22:04:09 +01:00
parent 6dff05818b
commit a62912d6de
13 changed files with 10 additions and 32 deletions

View file

@ -2,6 +2,7 @@
@using ImageBoardServerApp.Data
@using ImageBoardServerApp.Data.Repository
<img class="banner" src="img/static/banner/@board.Tag ban.png" alt="No Banner found"/>
<PageTitle>/@board.Tag/ - @board.Topic - BulletBoard</PageTitle>
<AuthorizeView>

View file

@ -4,4 +4,13 @@
.notLoggedIn{
text-align: center;
}
.banner{
justify-content: center;
display: block;
margin-left: auto;
margin-right: auto;
max-width: 500px;
max-height: 500px;
}