Commit 40a2283b authored by Kento HASEGAWA's avatar Kento HASEGAWA

Add support for a large screen

parent 646807d4
html, body{ html, body{
/*width: 800px;*/
/*height: 500px;*/
font-size: 11px; font-size: 11px;
overflow: hidden; overflow: hidden;
} }
...@@ -10,7 +8,7 @@ body{ ...@@ -10,7 +8,7 @@ body{
/* scrollbar settings */ /* scrollbar settings */
::-webkit-scrollbar{ ::-webkit-scrollbar{
width: 25px; width: 20px;
border: 1px solid rgba(0, 0, 50, .2); border: 1px solid rgba(0, 0, 50, .2);
} }
::-webkit-scrollbar-thumb{ ::-webkit-scrollbar-thumb{
...@@ -18,7 +16,7 @@ body{ ...@@ -18,7 +16,7 @@ body{
} }
#question-table-wrapper{ #question-table-wrapper{
height: 300px; height: calc(100vh - 50px);
overflow-y: scroll; overflow-y: scroll;
overflow-x: hidden; overflow-x: hidden;
} }
...@@ -45,7 +43,7 @@ body{ ...@@ -45,7 +43,7 @@ body{
} }
#client-control-pane{ #client-control-pane{
height: 330px; height: calc(100vh - 20px);
overflow-y: scroll; overflow-y: scroll;
} }
......
...@@ -15,9 +15,9 @@ ...@@ -15,9 +15,9 @@
<div id="wrapper"> <div id="wrapper">
<div id="contorol-panel-wrapper" class="container-fluid"> <div id="control-panel-wrapper" class="container-fluid">
<div class="row"> <div id="control-panel-row" class="row">
<div class="col-5" id="question-control-pane"> <div class="col-5" id="question-control-pane">
<h3>問題一覧</h3>&nbsp; <h3>問題一覧</h3>&nbsp;
<span><a href="/#" id="view-server-status-button">システム状況</a></span> <span><a href="/#" id="view-server-status-button">システム状況</a></span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment