Skip to content

Commit

Permalink
changed favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
LakshmiChaitanya2008 committed Dec 20, 2023
1 parent c21c5cb commit 616d87e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTMLArena</title>
</head>
Expand Down
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 9 additions & 6 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import "monaco-themes/themes/Monokai Bright.json";
import PackagesModel from "./components/PackagesModel";

const CodePenClone = () => {
// something: LakshmiChaitanya.123

const { logs, currentRightTab, setLogs } = useContext(CodeContext);

Expand All @@ -31,18 +32,18 @@ const CodePenClone = () => {
}, [monaco]);

return (
<div>
<><div className="hidden md:block">
<Navbar />

<div className="md:flex justify-between">
<div className="flex justify-between">
<CodeTabs />
<OutputTabs />
</div>
<PanelGroup direction="horizontal">
<Panel minSize={20} defaultSize={50}>
<CodeInput />
</Panel>
<PanelResizeHandle className="text-sm w-[2px] hover:bg-primary md:flex flex-col justify-center"></PanelResizeHandle>
<PanelResizeHandle className="text-sm w-[2px] hover:bg-primary flex flex-col justify-center"></PanelResizeHandle>
<Panel minSize={20} defaultSize={50}>
<Output />
<div className={currentRightTab === 0 ? "hidden" : "block"}>
Expand All @@ -55,14 +56,16 @@ const CodePenClone = () => {
<Console
logs={logs}
variant="dark"
styles={{ BASE_FONT_SIZE: "16px", LOG_BORDER: "white" }}
/>
styles={{ BASE_FONT_SIZE: "16px", LOG_BORDER: "white" }} />
</div>
</Panel>
</PanelGroup>
<SettingsModel />
<PackagesModel />
</div>


</div><h1 className="text-2xl font-bold text-center flex justify-center items-center h-screen">Sorry 😞, The Code Editor does not work on Mobile Devices</h1></>

);
};

Expand Down

0 comments on commit 616d87e

Please sign in to comment.