Create config page using tailwind, shadcn components, styling

- Include side pane but with only the account info in it
- Replicate styling of the old config page
This commit is contained in:
Debanjum Singh Solanky
2024-07-16 20:06:50 +05:30
parent 88007d7552
commit 7e8e80f29e
3 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
div.page {
display: grid;
grid-template-columns: auto 1fr;
gap: 1rem;
height: 100vh;
color: hsla(var(--foreground));
}
div.contentBody {
display: grid;
margin: auto;
}