Even more height fixes, bit better background

This commit is contained in:
mrfry 2021-06-09 10:58:24 +02:00
parent 5546bdb477
commit 14d8e43083
4 changed files with 8 additions and 6 deletions

View file

@ -87,7 +87,6 @@
} }
.content { .content {
height: calc(100vh - 50px);
margin-left: 150px; margin-left: 150px;
margin-top: 45px; margin-top: 45px;
padding: 1px 7px; padding: 1px 7px;

View file

@ -11,7 +11,7 @@
@import url('https://fonts.googleapis.com/css2?family=Kameron&family=Overpass+Mono:wght@300;400&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Kameron&family=Overpass+Mono:wght@300;400&display=swap');
html { html {
height: 100%; min-height: calc(100vh);
} }
body { body {
@ -19,15 +19,18 @@ body {
justify-content: center; justify-content: center;
margin: 0px; margin: 0px;
height: 100%; min-height: calc(100vh);
font-family: 'Kameron', serif; font-family: 'Kameron', serif;
font-family: 'Overpass Mono', monospace; font-family: 'Overpass Mono', monospace;
color: #999999; color: #999999;
} }
#__next { #__next {
height: 100%; min-height: calc(100vh);
width: 1200px; width: 1200px;
/* offset-x | offset-y | blur-radius | spread-radius | color */
background-color: var(--background-color);
box-shadow: 0px 0px 29px 19px #222426;
} }
img { img {

View file

@ -11,7 +11,7 @@ class MyDocument extends Document {
return ( return (
<Html> <Html>
<Head /> <Head />
<body bgcolor="#222426"> <body bgcolor="#222226">
<Main /> <Main />
<NextScript /> <NextScript />
</body> </body>

View file

@ -1,7 +1,7 @@
.chat { .chat {
display: flex; display: flex;
align-items: stretch; align-items: stretch;
height: 100%; height: calc(100vh - 50px);
} }
.main { .main {