We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eccdf0a commit 2a868d2Copy full SHA for 2a868d2
2 files changed
src/vscode-button-group/vscode-button-group.styles.ts
@@ -10,6 +10,7 @@ const styles: CSSResultGroup = [
10
align-items: stretch;
11
padding: 0;
12
border: none;
13
+ overflow: hidden;
14
}
15
16
::slotted(vscode-button:not(:first-child)) {
src/vscode-button/vscode-button.styles.ts
@@ -105,16 +105,16 @@ const styles: CSSResultGroup = [
105
display: flex;
106
justify-content: center;
107
position: relative;
108
- width: 100%;
+ width: calc(100% - 2px);
109
height: 100%;
110
- padding: 1px 13px;
+ padding: 1px 12px;
111
112
113
:host(:empty) .wrapper,
114
:host([icon-only]) .wrapper {
115
min-height: 24px;
116
min-width: 16px;
117
- padding: 1px 5px;
+ padding: 1px 4px;
118
119
120
slot {
0 commit comments