Skip to content

Commit

Permalink
fix(edgeless): size panel width (#6473)
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon authored Mar 13, 2024
1 parent 340c62e commit 6ae91cd
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ export class EdgelessSizePanel extends LitElement {
flex-direction: column;
align-items: center;
justify-content: center;
width: 64px;
width: 70px;
}
.size-button {
display: flex;
align-items: center;
justify-content: start;
width: 64px;
width: 100%;
height: 32px;
padding: 0 8px;
}
Expand All @@ -47,7 +47,7 @@ export class EdgelessSizePanel extends LitElement {
text-align: justify;
font-size: 15px;
font-style: normal;
width: 48px;
width: 56px;
height: 24px;
font-weight: 400;
line-height: 24px;
Expand All @@ -68,7 +68,7 @@ export class EdgelessSizePanel extends LitElement {
}
.size-input {
width: 48px;
width: 56px;
height: 18px;
border: 1px solid var(--affine-border-color);
border-radius: 8px;
Expand Down

0 comments on commit 6ae91cd

Please sign in to comment.