Skip to content

Commit

Permalink
style: fixes to width-height limits
Browse files Browse the repository at this point in the history
  • Loading branch information
dd84ai committed Apr 7, 2024
1 parent 10467cc commit 2e3b203
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions darkstat/front/shared.templ
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ templ TabContent() {
body {
background-color: #EFEFEF;
font-weight: 500;
width: calc(100% - 10px);
}
th, td {
padding-left: 5px;
Expand Down Expand Up @@ -58,7 +59,7 @@ templ TabContent() {

& #table-top {
overflow: scroll;
height: calc(65vh - 50px) !important;
height: calc(65vh - 65px) !important;
border-style: solid;
border-width: 2px;
border-color: #D7D7D7;
Expand All @@ -74,7 +75,7 @@ templ TabContent() {
& #infocard_view {
width: 25%;
overflow-y: scroll;
height: calc(100vh - 50px) !important;
height: calc(100vh - 65px) !important;
border-style: solid;
border-width: 2px;
border-color: #D7D7D7;
Expand Down

0 comments on commit 2e3b203

Please sign in to comment.