We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08bb52 commit 3fa524bCopy full SHA for 3fa524b
1 file changed
packages/code-studio/src/styleguide/ThemeColors.tsx
@@ -136,7 +136,12 @@ export function ThemeColors(): JSX.Element {
136
{name.endsWith('-hue') || note != null ? (
137
<span>{note ?? value}</span>
138
) : null}
139
- <CopyButton copy={name} isQuiet />
+ <CopyButton
140
+ copy={name}
141
+ isQuiet
142
+ // copy button changed size, but don't want to update e2e tests
143
+ UNSAFE_style={{ minWidth: 0, width: '30px' }}
144
+ />
145
</div>
146
)
147
)}
0 commit comments