Skip to content

Commit

Permalink
fix: try to fix for issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Nov 23, 2023
1 parent 9c3ffdf commit 90c55cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/editor/live-editor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const LiveEditor = () => {
},
})

return (<div className={'container'}>
return (<div className={'w-full'}>
<div className={'editor-block'}>
<div className={'domain-buttons'}>
<span className={'scene-text'}>Scene: (Todo)</span>
Expand All @@ -104,7 +104,7 @@ const LiveEditor = () => {
</div>
</div>

{editor && <Sidebar eidtor={editor}/>}
{editor && <div className={'lg:visible md:invisible sm:invisible'}><Sidebar eidtor={editor} /></div> }
</div>
)
}
Expand Down
6 changes: 6 additions & 0 deletions styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
@import '@radix-ui/colors/mauve.css';
@import '@radix-ui/colors/violet.css';

@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import "tailwindcss/screens";

@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind screens;

html,
body {
Expand Down

0 comments on commit 90c55cb

Please sign in to comment.