diff --git a/src/interface/web/app/search/page.tsx b/src/interface/web/app/search/page.tsx index 88d54ca4..61e726ac 100644 --- a/src/interface/web/app/search/page.tsx +++ b/src/interface/web/app/search/page.tsx @@ -222,7 +222,7 @@ export default function Search() {
- + ; return ( -
+
{title} @@ -655,7 +655,7 @@ export default function SettingsView() { />
-
+
}>
diff --git a/src/interface/web/app/settings/settings.module.css b/src/interface/web/app/settings/settings.module.css index 8c5ec535..118dc3b1 100644 --- a/src/interface/web/app/settings/settings.module.css +++ b/src/interface/web/app/settings/settings.module.css @@ -1,6 +1,6 @@ div.page { display: grid; - grid-template-columns: auto 1fr; + grid-template-columns: 1fr; gap: 1rem; height: 100vh; color: hsla(var(--foreground)); @@ -8,15 +8,35 @@ div.page { div.contentBody { display: grid; margin: auto; + margin-left: 20vw; + margin-top: 1rem; } div.phoneInput { padding: 0rem; } +div.sidePanel { + position: fixed; + height: 100%; +} + div.phoneInput input { width: 100%; padding: 0.5rem; border: 1px solid hsla(var(--border)); border-radius: 0.25rem; } + +@media screen and (max-width: 768px) { + + div.sidePanel { + position: relative; + height: 100%; + } + + div.contentBody { + margin-left: 0; + margin-top: 0; + } +}