diff options
author | Louie S <louie@example.com> | 2023-04-03 20:40:22 -0700 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-04-03 20:40:22 -0700 |
commit | 11a36b7782a950e14a8ddcc59a2d80fe6408f51c (patch) | |
tree | 4ca7e5af7cc1e84d9c4fa8964501a720424beadc /frontend/style.css | |
parent | d8c68fe9cc59f667478bb763cf690d8f771afa59 (diff) |
Changes to HTML layout
Diffstat (limited to 'frontend/style.css')
-rw-r--r-- | frontend/style.css | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/frontend/style.css b/frontend/style.css index 117e5f6..aa772ab 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -11,11 +11,15 @@ input { } #docset-page { - border: solid; + border-left: solid; flex-grow: 4; max-height: 100vh; } +#docset-table { + border-top: solid; +} + #header { display: none; text-align: center; @@ -23,10 +27,14 @@ input { #main-body { display: flex; - height: 100vh; } #searchbar { - border: solid; - display: inline-block; + max-width: 20vw; +} + +#sidebar { + border-right: solid; + display: inline-grid; + height: 100vh; } |