Increase bottom notification size

This commit is contained in:
Frederic Guillot
2016-03-05 15:37:15 -05:00
parent f9367cb322
commit a19dc88567
6 changed files with 10 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@@ -48,9 +48,12 @@
.alert-fade-out {
position: fixed;
bottom: 0;
left: 0;
bottom: 0;
left: 0;
width: 100%;
font-size: 1.1em;
padding-top: 15px;
padding-bottom: 15px;
margin-bottom: 0;
border-width: 1px 0 0;
border-radius: 0;

File diff suppressed because one or more lines are too long

View File

@@ -16,7 +16,7 @@ function App() {
this.poll();
// Alert box fadeout
$(".alert-fade-out").delay(4000).fadeOut(800, function() {
$(".alert-fade-out").delay(5000).fadeOut(800, function() {
$(this).remove();
});
}