Skip to content

Commit

Permalink
fix css causing unecessary scroll legroom
Browse files Browse the repository at this point in the history
Co-Authored-By: RICHARD Dorian <[email protected]>
  • Loading branch information
couleurm and RichardDorian committed Mar 24, 2024
1 parent 5e6cb68 commit 3714d8f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
html, body {
height: 100%;
body {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;
color: white;
background-color: rgb(13, 17, 23);
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
}

.function {
Expand Down Expand Up @@ -50,7 +52,7 @@ label {
/*border-radius: 10px;*/
display: flex;
border-bottom: 1px #21262d solid;
height: 100%
flex-grow: 1
}

#functions h2 {
Expand All @@ -59,7 +61,10 @@ label {

#functions {
min-width: 230px;
max-width: 230px;
width: 20%;
display: flex;
flex-direction: column;
border-right: 1px #21262d solid;
}

Expand All @@ -70,8 +75,9 @@ label {

#parameters {
background-color: rgb(1, 4, 9);
width: 80%;
padding: 1em
width: auto;
padding: 1em;
flex-grow: 1
}

button, input[type="checkbox"] {
Expand Down

0 comments on commit 3714d8f

Please sign in to comment.