Skip to content

Commit

Permalink
feat: Properties header styling
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Nov 13, 2024
1 parent 7f5fa09 commit d623cc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/webui/src/client/styles/propertiesPanel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
font-size: 1.2em;

text-align: left;
padding-top: 0.5rem;
padding-left: 1rem;
display: flex;
align-items: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function PropertiesPanel(): JSX.Element {
></div>
)
})}
PART : {String(part?.title)}
{part?.title.slice(0, 30)}
</div>
<div className="propertiespanel-pop-up__contents">
{segment &&
Expand Down Expand Up @@ -218,7 +218,7 @@ export function PropertiesPanel(): JSX.Element {
></div>
)
})}
SEGMENT : {String(segment?.name)}
{segment?.name.slice(0, 30)}
</div>
<div className="propertiespanel-pop-up__contents">
{segment &&
Expand Down

0 comments on commit d623cc6

Please sign in to comment.