Skip to content

Commit

Permalink
Fixed #968
Browse files Browse the repository at this point in the history
  • Loading branch information
YamiOdymel committed Dec 30, 2023
1 parent 188eccc commit 53ba15d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@
.ts-button.is-icon {
padding: 0;
min-width: 0;
width: calc(var(--height) * 1.1);
/*width: calc(var(--height) * 1.1);*/
width: var(--height);
}

.ts-button.is-icon .ts-icon {
Expand Down Expand Up @@ -402,6 +403,10 @@
width: 1px;
}

.ts-buttons .ts-button.is-icon:not(:first-child) {
width: calc(var(--height) * 1.1); /** divider visual balance */
}

.ts-buttons .ts-button.is-outlined::before {
display: none;
}
Expand Down

0 comments on commit 53ba15d

Please sign in to comment.