notes list scroll css fix

This commit is contained in:
Mo Bitar
2017-01-31 10:59:50 -06:00
parent b74d709f4d
commit 69b636f2b4
4 changed files with 28 additions and 11 deletions

View File

@@ -145,12 +145,17 @@ $section-header-height: 70px;
height: 100%;
max-height: calc(100vh - #{$header-height});
float: left;
overflow-y: auto;
overflow-y: auto;;
overflow-x: hidden;
min-width: 0;
font-size: 17px;
.scrollable {
overflow-y: auto;
overflow-x: hidden;
}
> .content {
height: 100%;
max-height: 100%;

View File

@@ -2,6 +2,8 @@
width: 25%;
border-left: 1px solid #dddddd;
border-right: 1px solid #dddddd;
// overflow-y: hidden !important;
// height: calc(100vh - 130px) !important;
.notes-title-bar {
color: rgba(black, 0.40);
@@ -39,6 +41,15 @@
}
}
.scrollable {
height: calc(100vh - (130px + #{$header-height}));
}
.infinite-scroll {
overflow-x: hidden;
height: inherit;
}
.note {
width: 100%;
padding: 15px;