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 96ea371 commit e1ecaddCopy full SHA for e1ecadd
src/editor/components/ControlPanel/ControlPanel.tsx
@@ -43,7 +43,9 @@ const ControlPanel = ({
43
44
return (
45
<RadioButton.Option key={item} value={item}>
46
- <Icon className={b('icon')} width={ICON_SIZE} height={ICON_SIZE} />
+ <span className={b('icon')}>
47
+ <Icon width={ICON_SIZE} height={ICON_SIZE} />
48
+ </span>
49
</RadioButton.Option>
50
);
51
})}
src/editor/components/Layout/Layout.scss
@@ -41,4 +41,8 @@ $block: '.#{$ns}editor-layout';
41
border-right: var(--editor-divider-width) solid var(--yc-color-line-generic);
42
overflow-x: auto;
}
+
+ &__right {
+ width: 100%;
+ }
0 commit comments