fix: Sichtbarkeit des Zugangscodes-Formulars im Hochformatmodus auf Mobilgeräten

Das Problem behoben, bei dem das Zugangscodes-Formular im Hochformatmodus auf Mobilgeräten nicht sichtbar war. Die CSS-Stile wurden angepasst, um sicherzustellen, dass das Formular unabhängig von der Geräteausrichtung ordnungsgemäß angezeigt wird.
This commit is contained in:
Developer 02
2024-09-17 11:09:21 +02:00
parent 8cd8df4b02
commit 66466dc865
3 changed files with 11 additions and 3 deletions

View File

@@ -263,6 +263,10 @@ footer#page-footer {
z-index: 1050;
}
#form-access-code {
margin-left: 5rem;
}
/* styles for mobile responsiveness */
@media (max-height: 850px) {
.navbar .container {
@@ -366,6 +370,10 @@ footer#page-footer {
.page section {
max-width: 90%;
}
#form-access-code {
margin-left: 0;
}
}
@media (max-height: 600px) {