added password management

This commit is contained in:
marko
2021-12-13 05:23:20 +01:00
parent 681cb61698
commit bb603f4977
8 changed files with 372 additions and 153 deletions

View File

@@ -0,0 +1,11 @@
/*
on large screens add a padding on the left for the fixed sidnav
*/
header, main, footer {
padding-left: 300px;
}
@media only screen and (max-width : 992px) {
header, main, footer {
padding-left: 0;
}
}