styling changes

This commit is contained in:
Jon Dough
2023-06-22 20:36:53 +09:00
parent 7f477d0049
commit 7dc6d5eb8a

View File

@@ -7,15 +7,15 @@ html, body {
#grid-container { #grid-container {
display: grid; display: grid;
grid-template-columns: auto auto; grid-template-columns: 50vw 50vw;
height: 100vh; height: 100vh;
width: 100vw; width: 100vw;
} }
.section { .section {
padding: 17px; padding: 17px;
height: 100%; height: 100vh;
width: 49vw; width: 100%;
box-sizing: border-box; box-sizing: border-box;
} }
@@ -42,6 +42,8 @@ html, body {
} }
#rendered-text { #rendered-text {
height: 100%;
overflow-y: scroll;
padding: 5px; padding: 5px;
word-break: break-word; word-break: break-word;
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
@@ -84,4 +86,16 @@ html, body {
.mobile-only { .mobile-only {
display: block; display: block;
} }
#grid-container {
grid-template-columns: auto;
}
.section {
height: 60vh;
}
#see-docs {
float: initial;
}
} }