feat: add codemirror editor and fix layout

This commit is contained in:
2022-07-14 10:58:38 +05:30
parent 870cabfa51
commit 4af0ee7105
7 changed files with 118 additions and 32 deletions

View File

@ -1,6 +1,6 @@
const BottomBar = () => {
return (
<div
<footer
style={{
height: "5vh",
minHeight: "30px",
@ -9,7 +9,6 @@ const BottomBar = () => {
alignItems: "center",
justifyContent: "space-between",
paddingInline: "20px",
justifySelf: "end",
}}
className="BottomBar">
<a
@ -26,8 +25,8 @@ const BottomBar = () => {
className="controls"
style={{
display: "flex",
justifyItems: "center",
marginBottom: "2px",
alignItems: "center",
}}>
<ButtonControl text="raw" link="/" />
<Separator />
@ -35,7 +34,7 @@ const BottomBar = () => {
<Separator />
<ButtonControl text="source" link="/" />
</ul>
</div>
</footer>
);
};