auto update alert in footer

This commit is contained in:
Mo Bitar
2017-05-20 09:10:12 -05:00
parent 79afc843fb
commit ea632445de
9 changed files with 37 additions and 14 deletions

View File

@@ -18,8 +18,8 @@ h2 {
width: 100%;
padding: 5px;
background-color: #d8d7d9;
height: $header-height;
max-height: $header-height;
height: $footer-height;
max-height: $footer-height;
z-index: 100;
font-size: 10px;
color: $dark-gray;

View File

@@ -84,13 +84,13 @@ p {
background-color: $bg-color;
}
$header-height: 25px;
$footer-height: 25px;
$section-header-height: 70px;
.app {
// height: 100%;
height: calc(100% - #{$header-height});
height: calc(100% - #{$footer-height});
width: 100%;
display: flex;
vertical-align: top;
@@ -115,7 +115,7 @@ $section-header-height: 70px;
.section {
padding-bottom: 0px;
height: 100%;
max-height: calc(100vh - #{$header-height});
max-height: calc(100vh - #{$footer-height});
font-size: 17px;
.scrollable {

View File

@@ -52,7 +52,7 @@
}
.scrollable {
height: calc(100vh - (#{$notes-title-bar-height} + #{$header-height}));
height: calc(100vh - (#{$notes-title-bar-height} + #{$footer-height}));
}
.infinite-scroll {

View File

@@ -29,7 +29,7 @@
}
.scrollable {
height: calc(100vh - (#{$tags-title-bar-height} + #{$header-height}));
height: calc(100vh - (#{$tags-title-bar-height} + #{$footer-height}));
}
.tag {

View File

@@ -3,7 +3,7 @@ $dark-gray: #2e2e2e;
@import "app/standard";
@import "app/main";
@import "app/ui";
@import "app/header";
@import "app/footer";
@import "app/tags";
@import "app/notes";
@import "app/editor";