Skip to content

Commit

Permalink
Merge pull request #283 from liam-hq/table-detail-width
Browse files Browse the repository at this point in the history
Reduce the width of TableDetail to prevent TableNode from being obscured
  • Loading branch information
hoshinotsuyoshi authored Dec 17, 2024
2 parents 3fe2baa + 0790141 commit 83d6494
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions frontend/.changeset/many-wasps-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@liam-hq/erd-core": patch
"@liam-hq/cli": patch
---

Reduce the width of TableDetail to prevent TableNode from being obscured
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
.wrapper {
display: grid;
grid-template-rows: auto 1fr;
width: 500px;
width: 300px;
height: 100%;
border-left: 1px solid var(--pane-border, #383a3b);
background-color: var(--pane-background, #232526);
box-shadow: 0px 4px 20px 0px var(--shadow-basic-shadow, #000);
word-break: break-all;
list-style-position: outside;
}

.header {
Expand Down

0 comments on commit 83d6494

Please sign in to comment.