Skip to content

Commit

Permalink
change button container from grid to flex
Browse files Browse the repository at this point in the history
  • Loading branch information
mchilli committed Oct 9, 2023
1 parent 16ac3b8 commit 3afd787
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions webui/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8361,8 +8361,8 @@ body {
.main-container .app-controls,
.main-container .device-controls,
.main-container .key-entries-controls {
display: grid;
grid-template-columns: repeat(3, 1fr);
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 10px;
}
Expand Down
2 changes: 1 addition & 1 deletion webui/css/style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions webui/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ body {
.app-controls,
.device-controls,
.key-entries-controls {
display: grid;
grid-template-columns: repeat(3, 1fr);
display: flex;
flex-wrap: wrap;
gap: $key-entries-gap;
margin-bottom: $key-entries-gap;

Expand Down

0 comments on commit 3afd787

Please sign in to comment.