Skip to content

Commit

Permalink
Fixed an overflow issue on admin pages; Closes luyadev#461
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMaaarc authored and slowfox089 committed Dec 10, 2020
1 parent bea126e commit 2e2f830
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ In order to read more about upgrading and BC breaks have a look at the [UPGRADE

### Fixed

+ [#461](https://github.com/luyadev/luya-module-admin/issues/461) Fixed an overflow issue on admin pages.
+ [#453](https://github.com/luyadev/luya-module-admin/issues/453) When visiting dashboard in mobile view, the title was not set correctly.
+ [#439](https://github.com/luyadev/luya-module-admin/issues/439) Add option to dissabled auto assign of select data after find.
+ [#441](https://github.com/luyadev/luya-module-admin/issues/441) Fixed switching of the "check_circle" text to the real icon after successful authentication
Expand Down
2 changes: 1 addition & 1 deletion src/resources/dist/main.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/resources/scss/components/_luya.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,12 @@
.luya-content {
background-color: map-get($grays, 100);
padding: $content-padding-y $content-padding-x;
/*padding-top: 0;*/

@media (min-width: $mobile-nav-breakpoint) {
flex: 1 1;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
max-height: 100%;

.luya-subnav.overlaying + & {
padding-left: 50px;
Expand Down

0 comments on commit 2e2f830

Please sign in to comment.