Skip to content

Commit

Permalink
fix(mobile): position of classic toolbar on tablet view
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Jan 1, 2025
1 parent a8f0520 commit b11f2a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/public/app/layouts/mobile_layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export default class MobileLayout {
.css("padding-left", "0")
.css("padding-right", "0")
.css('max-height', '100%')
.css("position", "relative")
.child(new FlexContainer('row').contentSized()
.css('font-size', 'larger')
.css('align-items', 'center')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const TPL = `\
}
body.mobile .classic-toolbar-widget {
position: fixed;
position: absolute;
left: 0;
bottom: var(--launcher-pane-size);
bottom: 0;
right: 0;
overflow-x: auto;
background: var(--main-background-color);
Expand Down

0 comments on commit b11f2a6

Please sign in to comment.