Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/atg/Editor/editor/code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export const Code = ({
showText ? "w-full" : "w-0"
}`}
>
<p className={`text-gray-50 font-bold ml-2 text-sm`}>
<p className={`text-gray-50 font-bold ml-2 text-sm whitespace-nowrap`}>
Side Content
</p>
</div>
Expand Down
2 changes: 2 additions & 0 deletions components/atg/components/SideBarContent/SideBarNormal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ export default function SideBarNormal({
className={`${
SideBartheme ? "text-secondary-300" : "text-gray-300"
} font-semibold`}
sx={{whiteSpace:"nowrap"}}
>
{step.label}
</Typography>
Expand All @@ -342,6 +343,7 @@ export default function SideBarNormal({
"&::-webkit-scrollbar": {
display: "none",
},
height:"auto",
}}
>
<Box sx={{ mt: 2 }}>
Expand Down
1 change: 1 addition & 0 deletions components/atg/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ const Editor = ({ goFullScreen = false }: { goFullScreen?: boolean }) => {
className={`relative flex flex-col ${
showSideContent ? "w-8/12" : "w-full"
} h-full transition-all mt- duration-300`}
style={{ minWidth: "775px" }}
>
{/* Code and Terminal */}
{files.length !== 0 ? (
Expand Down