Skip to content

Commit

Permalink
Merge pull request #481 from asolove/asolove/442-narrow-buttons
Browse files Browse the repository at this point in the history
smol mode fix
  • Loading branch information
blerner authored May 1, 2024
2 parents aaedb3a + 01f57b0 commit 08df02c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/web/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -1677,12 +1677,18 @@ body.smallHeader #handle {
}

#runButton, #breakButton {
min-width: 180px;
padding-left: 30px;
padding-right: 30px;
box-shadow: 0px -5px 5px 1px var(--shadow-color);
}


@media only screen and (min-width: 700px) {
#runButton, #breakButton {
min-width: 180px;
}
}

body.smallHeader #runButton, body.smallHeader #breakButton {
width: 60px;
}
Expand Down

0 comments on commit 08df02c

Please sign in to comment.