Skip to content

Commit

Permalink
Fixed layout issues on Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
rpanic committed Mar 19, 2019
1 parent d0d8932 commit 7e71b0b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</div>-->
<!-- <div class="ui two column stackable grid"> -->
<div class="row">
<div class="ui very padded container" style="width: fit-content;">
<div class="ui very padded container" style="width: -moz-fit-content; width: -webkit-fit-content;">
<select id="syntaxSelect" class="ui search dropdown center aligned">
<option value="Plaintext" selected="">Syntax</option>
</select>
Expand Down
11 changes: 9 additions & 2 deletions src/main/resources/frontend/monaco/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,21 @@
right: 0; */
margin-top: 1em;
width: 100%;
/* height: 83%; */
height: 100%;
}

.containerRow{
height: 74%;
height: 88%;
}

.submit{
margin-top: 0.6em;
}

.ui.one.column.grid{
height: 80%;
}

.ui.two.column.stackable.grid{
height: 23%;
}

0 comments on commit 7e71b0b

Please sign in to comment.