mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
Merge branch 'ui-fix' of https://github.com/thebinarymutant/lemmy into thebinarymutant-ui-fix
This commit is contained in:
commit
24770126d4
2 changed files with 11 additions and 1 deletions
10
ui/assets/css/main.css
vendored
10
ui/assets/css/main.css
vendored
|
@ -148,3 +148,13 @@ hr {
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis
|
||||
}
|
||||
|
||||
#app {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.fl-1 {
|
||||
flex: 1;
|
||||
}
|
2
ui/src/index.tsx
vendored
2
ui/src/index.tsx
vendored
|
@ -36,7 +36,7 @@ class Index extends Component<any, any> {
|
|||
<Provider i18next={i18n}>
|
||||
<BrowserRouter>
|
||||
<Navbar />
|
||||
<div class="mt-4 p-0">
|
||||
<div class="mt-4 p-0 fl-1">
|
||||
<Switch>
|
||||
<Route exact path={`/`} component={Main} />
|
||||
<Route
|
||||
|
|
Loading…
Reference in a new issue