Fix some things (#32)
Fixes the issue with the background color not taking up the whole screen. This was noticeable when the page was loading in dark mode, the user would get a white flash. Fixes the docker build with axum that was never tested with the axum integration PR. Removed useless dependencies at the workspace level. Rustywind has done some tailwind classes sorting here and there where files were saved. Co-authored-by: Miroito <alban.vachette@gmail.com> Reviewed-on: #32pull/33/head
parent
b65cde32e4
commit
3cfbf0e5f2
@ -1,3 +1,20 @@
|
|||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
html {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
min-height: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#root {
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue