Remove language switcher and associated translations from the menu and scripts

This commit is contained in:
vista-man
2025-02-20 11:28:54 +01:00
parent 1b47c20421
commit 8eafd01731
3 changed files with 14 additions and 87 deletions

View File

@@ -314,21 +314,3 @@ body {
opacity: 0; /* Hide the logo */
visibility: hidden; /* Ensure the logo is not clickable */
}
.language-switcher {
position: fixed;
bottom: 20px; /* Position at the bottom */
left: 20px; /* Position at the left */
background-color: #ff8c00;
color: white;
padding: 10px 20px;
border-radius: 25px;
cursor: pointer;
font-size: 1em;
transition: all 0.3s ease;
z-index: 1100; /* Ensure it is above other elements */
}
.language-switcher:hover {
background-color: #e65c00;
}