Finished base for about page, fixed height issue on mobile, Improved config and lang utils

Update index.php, config.php, and 8 more files...
This commit is contained in:
2023-11-10 03:24:30 +01:00
parent faf5837650
commit e5429e4484
10 changed files with 295 additions and 102 deletions

View File

@@ -7,12 +7,15 @@
/* Site > Base > Layout > Root */
html, body {
// Do not use 100vh !
// See: https://stackoverflow.com/a/59020698
min-width: 100vw;
min-height: 100vh;
min-height: 100%;
width: 100vw !important;
height: 100vh !important;
height: 100% !important;
max-width: 100vw;
max-height: 100vh;
max-height: 100%;
}
/* Site > Base > Layout > Main Grid */

View File

@@ -10,6 +10,11 @@
height: 1em;
}
.img-profile {
width: 7.5rem;
height: 7.5rem;
}
.sidebar-entry > i {
}