Added a first login draft

This commit is contained in:
sageTheDM 2024-09-20 10:00:54 +02:00
parent ed6e812b6c
commit 464df4adac
8 changed files with 653 additions and 19 deletions

View file

@ -107,4 +107,20 @@
font-size: 1.2em; /* Adjust button font size */
margin: auto;
}
}
/* Responsive adjustments for the settings*/
@media (max-width: 768px) {
.settings-content {
flex-direction: column; /* Stack sidebar and main content on smaller screens */
}
.sidebar {
width: 100%; /* Full width for sidebar */
}
.settings-main {
width: 100%; /* Full width for main content */
}
}