Skip to content

Commit 117681a

Browse files
committed
Fix: default styles
1 parent 2468608 commit 117681a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141

4242
- name: Cleanups 🧹
4343
run: |
44+
jq 'del(.patchedDependencies)' "package.json" > temp.json && mv temp.json "package.json"
4445
echo $(sed '/if (storybook) {/,/}/d' src/store/index.ts) > src/store/index.ts
4546
echo $(sed '/@dreamworld\/addon-redux/d' .storybook/main.ts) > .storybook/main.ts
4647

src/components/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Designer: React.FC<ISTKProps> = (props) => {
2323
>
2424
<Operations {...props} />
2525
<div
26-
className={twMerge("h-full flex relative", props.styles?.workspace?.container?.className)}
26+
className={twMerge("h-full flex flex-1 relative", props.styles?.workspace?.container?.className)}
2727
style={props.styles?.workspace?.container?.properties}
2828
>
2929
<Toolbar {...props} />

src/components/toolbar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const ToolBar: React.FC<ISTKProps> = (props) => {
6262
<div
6363
id={ids.toolbar}
6464
className={twMerge(
65-
"h-full flex flex-col gap-5 border-t pt-5 border-black [&>*:last-child]:[&>*:last-child]:hidden bg-black/5",
65+
"flex flex-col gap-5 border-t pt-5 border-black [&>*:last-child]:[&>*:last-child]:hidden bg-black/5",
6666
styles?.root?.className
6767
)}
6868
style={styles?.root?.properties}

0 commit comments

Comments
 (0)