Skip to content

Commit

Permalink
chore(blazingCoffee): fix drawer layout height and scrollbar #104
Browse files Browse the repository at this point in the history
  • Loading branch information
marin-bratanov committed Jul 3, 2021
1 parent 2f1f186 commit 6452f0c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
.k-drawer-container {
background-color: $background-color;
min-height: calc(100vh);
height: calc(100% - 80px);

.k-drawer {
box-shadow: 0 0 10px rgba(0,0,0,.2);
border-right-width: 0 !important;
}
}

.k-drawer-content {
overflow: auto;
height: 100%;
}

.k-drawer-items {
& .title {
display: none; // hide from mini-mode, use .k-drawer-expanded to enable.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,8 @@ a.k-link.k-state-selected {
}
}

html, body, app {
height: 100%;
margin: 0;
padding: 0;
}

0 comments on commit 6452f0c

Please sign in to comment.