We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5727563 commit 9858369Copy full SHA for 9858369
src/components/EntityStatus/EntityStatus.scss
@@ -31,7 +31,9 @@
31
32
overflow: hidden;
33
34
- padding-right: var(--button-width);
+ &_with-button {
35
+ padding-right: var(--button-width);
36
+ }
37
}
38
39
&__controls-wrapper {
src/components/EntityStatus/EntityStatus.tsx
@@ -90,7 +90,7 @@ export function EntityStatus({
90
</span>
91
)}
92
{(path || name) && (
93
- <div className={b('wrapper')}>
+ <div className={b('wrapper', {'with-button': hasClipboardButton})}>
94
<span className={b('link', {'with-left-trim': withLeftTrim})}>
95
{renderLink()}
96
0 commit comments