Skip to content

Commit

Permalink
fix: invalid css in style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
billchurch committed May 11, 2022
1 parent f457a4a commit ffab534
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/client/src/css/style.css
@@ -1,7 +1,6 @@
body, html {
font-family: helvetica, sans-serif, arial;
font-size: 1em;
color: #111;
background-color: rgb(0, 0, 0);
color: rgb(240, 240, 240);
height: 100%;
Expand All @@ -26,7 +25,7 @@ body, html {
}
#terminal-container {
display: block;
width: calc(100% - 1 px);
width: calc(100% - 1px);
margin: 0 auto;
padding: 2px;
height: calc(100% - 19px);
Expand Down Expand Up @@ -139,7 +138,7 @@ body, html {
.dropup:hover .dropup-content {
display: block;
}
.dropup:click .dropup-content {
.dropup:active .dropup-content {
display: block;
}
.dropup:hover .dropbtn {
Expand Down

0 comments on commit ffab534

Please sign in to comment.