Skip to content

Commit

Permalink
ui: set fixed size for sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
ghivert committed Jul 23, 2024
1 parent 703a2c3 commit 85865a7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/frontend/src/stylesheets/all.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lazy-node:has(:not(:defined)) {
padding-right: 48px;
padding-bottom: 24px;
gap: 36px;
grid-template-columns: min-content 1fr;
grid-template-columns: 300px 1fr;
justify-items: center;
}

Expand Down Expand Up @@ -305,6 +305,7 @@ lazy-node:has(:not(:defined)) {
padding: 20px;
border-right: 1px solid var(--border-color);
margin-bottom: -24px;
width: 100%;
mask: linear-gradient(
180deg,
rgba(255, 255, 255, 0) 0%,
Expand Down Expand Up @@ -358,7 +359,7 @@ lazy-node:has(:not(:defined)) {
flex-direction: column;
gap: 9px;
font-size: 14px;
max-width: 250px;
max-width: calc(300px - 40px);
}

.main {
Expand Down

0 comments on commit 85865a7

Please sign in to comment.