28 lines
297 B
CSS
28 lines
297 B
CSS
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
hidden {
|
|
display: none;
|
|
}
|
|
|
|
.notification-container {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
margin: 20px;
|
|
}
|
|
|
|
footer {
|
|
margin-top: auto;
|
|
padding: 1rem !important;
|
|
}
|