2024-07-01 13:37:34 +00:00
|
|
|
/* #region sticky-footer */
|
|
|
|
/*
|
2024-09-25 10:08:20 +00:00
|
|
|
* Sticky Footer:
|
2024-07-01 13:37:34 +00:00
|
|
|
* A sticky footer always stays on the bottom of the page regardless of how
|
|
|
|
* little content is on the page. However, this footer will be pushed down if
|
|
|
|
* there is a lot of content, so it is different from a fixed footer.
|
|
|
|
*
|
|
|
|
* Note: This may cause issues in Internet Explorer which has weak support for
|
|
|
|
* flexbox.
|
|
|
|
*
|
|
|
|
* Read more: https://materializecss.com/footer.html#sticky-footer
|
|
|
|
*/
|
2024-11-19 14:28:43 +00:00
|
|
|
body {
|
2024-07-01 13:37:34 +00:00
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2024-11-19 14:28:43 +00:00
|
|
|
main {
|
2024-07-01 13:37:34 +00:00
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
/* #endregion sticky-footer */
|
|
|
|
|
|
|
|
/* #region other-overrides */
|
|
|
|
::placeholder {
|
|
|
|
color: #9e9e9e;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
/* #endregion other-overrides */
|