Skip to content

Commit

Permalink
fix(style): Fix horizontal scrollbar of js editor (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiedziolkaMichal authored Jun 9, 2023
1 parent 742a5b5 commit 229487a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion editor/css/editable-js-and-wat.css
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,15 @@
flex-direction: row;
}

.output {
width: calc(
100% - 108px
); /* 108px is 100px of a .button width + 8px of a .buttons-container padding-right */
}

.buttons-container {
flex-direction: column;
width: auto;
padding-right: 0.5rem;
padding-right: 8px;
}
}

0 comments on commit 229487a

Please sign in to comment.