Skip to content

Commit

Permalink
style(zeroline/ied-editor): allow longer IED name (#447)
Browse files Browse the repository at this point in the history
* Initial test with 12 characters

* Allow footer text in action-icon to be full size
  • Loading branch information
danyill authored Dec 20, 2021
1 parent eae9f6e commit 8640d0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/action-icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class ActionIcon extends LitElement {
margin: 0px;
text-align: center;
align-self: center;
max-width: 64px;
max-width: 100%;
direction: rtl;
}
Expand Down
2 changes: 1 addition & 1 deletion src/zeroline-pane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export class ZerolinePane extends LitElement {
grid-gap: 12px;
padding: 8px 12px 16px;
box-sizing: border-box;
grid-template-columns: repeat(auto-fit, minmax(64px, auto));
grid-template-columns: repeat(auto-fit, minmax(128px, auto));
}
`;
}

0 comments on commit 8640d0b

Please sign in to comment.