fix: match transaction aside layout

This commit is contained in:
Ahmed Bouhuolia
2024-07-01 19:24:09 +02:00
parent c95eec565d
commit 55caf037cd
11 changed files with 58 additions and 17 deletions

View File

@@ -1,5 +1,7 @@
:root {
--aside-topbar-offset: 60px;
--aside-width: 34%;
--aside-min-width: 400px;
}
.main{
@@ -9,11 +11,14 @@
}
.aside{
width: 500px;
width: var(--aside-width);
min-width: var(--aside-min-width);
height: 100dvh;
border-left: 1px solid rgba(17, 20, 24, 0.15);
height: inherit;
overflow: auto;
display: flex;
flex-direction: column;
}
.root {