Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: UI bugs in three-column mode - Issue #156 #158

Merged
merged 1 commit into from
Apr 23, 2024
Merged
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/Editor/ExtraColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const ExtraColumn = ({
} = useContext(CairoVMApiContext)

return (
<div className="w-full md:w-1/3 flex flex-col">
<div className="w-full md:w-1/3 hidden md:flex flex-col">
<div className="border-b border-gray-200 dark:border-black-500 flex items-center pl-6 pr-2 h-14 md:border-r flex-none">
<Header
codeType={codeType}
Expand Down
1 change: 1 addition & 0 deletions components/Editor/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const EditorHeader = ({

<div className="flex items-center ">
<Select
className="z-50"
onChange={onCodeTypeChange}
options={codeLangOptions}
value={codeTypeValue}
Expand Down
2 changes: 1 addition & 1 deletion components/Tracer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export const Tracer = () => {
</div>
)}

<div className="border-gray-200 border-t dark:border-black-500 flex-none overflow-hidden mb-[10px] h-[22vh]">
<div className="border-gray-200 border-t dark:border-black-500 flex-none mb-[10px] h-[22vh]">
<div className="px-4">
<nav className="-mb-px uppercase flex space-x-8" aria-label="Tabs">
<button
Expand Down
5 changes: 4 additions & 1 deletion components/layouts/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ const Nav = () => {
></ul>

<div className="items-center ml-auto flex">
<KBarButton />
<div className="md:block hidden">
<KBarButton />
</div>

<NavLink href={GITHUB_REPO_URL} external className="mx-2 md:mx-4">
GitHub
</NavLink>
Expand Down
Loading