auto update alert in footer
This commit is contained in:
@@ -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;
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
}
|
||||
|
||||
.scrollable {
|
||||
height: calc(100vh - (#{$tags-title-bar-height} + #{$header-height}));
|
||||
height: calc(100vh - (#{$tags-title-bar-height} + #{$footer-height}));
|
||||
}
|
||||
|
||||
.tag {
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user