diff --git a/backend/app/database/myp.db b/backend/app/database/myp.db index 33c40d628..6c600fb90 100644 Binary files a/backend/app/database/myp.db and b/backend/app/database/myp.db differ diff --git a/backend/app/database/myp.db-wal b/backend/app/database/myp.db-wal index 8b2db3dae..0830e25f5 100644 Binary files a/backend/app/database/myp.db-wal and b/backend/app/database/myp.db-wal differ diff --git a/backend/app/static/css/input.css b/backend/app/static/css/input.css index e4208cd6d..a21e1e33c 100644 --- a/backend/app/static/css/input.css +++ b/backend/app/static/css/input.css @@ -594,6 +594,39 @@ inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.2); + /* Die folgenden Eigenschaften wurden aus der ursprünglichen Definition beibehalten oder angepasst, falls relevant */ + display: flex; + justify-content: space-between; + align-items: center; + padding: 0.5rem 1rem; /* Beibehalten für Innenabstand, kann bei Bedarf angepasst werden */ + left: 0 !important; /* Ergänzt für volle Breite, falls width: 100% nicht ausreicht */ + right: 0 !important; /* Ergänzt für volle Breite */ + } + + .navbar-button { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border: none; + background: none; + cursor: pointer; + transition: background-color 0.3s; + } + + .navbar-button:hover { + background-color: rgba(0, 0, 0, 0.05); + } + + @media (max-width: 768px) { + .navbar { + flex-direction: column; + padding: 0.25rem; + } + + .navbar-button { + width: 100%; + text-align: center; + margin: 0.25rem 0; + } } .dark .navbar {