Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions frontend/src/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ i18n
// init i18next
.init({
resources,
lng: 'pl', // Set Polish as default language
fallbackLng: 'en',
fallbackLng: 'pl', // Set Polish as default language
debug: false,

interpolation: {
Expand Down
8 changes: 7 additions & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ body {
}

.sidebar {
min-height: calc(100vh - 56px);
background-color: #343a40;
padding-top: 20px;
}

/* The "min-width" comes from the "min-width" media attribute on "main-content" */
@media (min-width: 768px) {
.sidebar {
min-height: calc(100vh - 56px);
}
}

/* Removed color and background styles as they are set inline in Sidebar.js */
/* Kept basic layout and transition styles */
.sidebar .nav-link {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docker-mailserver-gui",
"version": "1.0.0",
"version": "1.0.1",
"description": "[![Docker Pulls](https://img.shields.io/docker/pulls/dunajdev/docker-mailserver-gui)](https://hub.docker.com/r/dunajdev/docker-mailserver-gui)",
"main": "index.js",
"scripts": {
Expand Down