diff --git a/public/koishi.webp b/public/koishi.webp new file mode 100644 index 0000000..2811f25 Binary files /dev/null and b/public/koishi.webp differ diff --git a/src/Editor/index.tsx b/src/Editor/index.tsx index 19e2fd5..2a17e88 100644 --- a/src/Editor/index.tsx +++ b/src/Editor/index.tsx @@ -4,6 +4,8 @@ import { useRecoilState } from "recoil"; import { EditorValueState } from "../GlobalStates/EditorValueState"; import { motion } from "framer-motion"; +import style from "./style.module.scss"; + export const Editor: FC = () => { const [value, setValue] = useRecoilState(EditorValueState) const ref = useRef() @@ -25,6 +27,7 @@ export const Editor: FC = () => { return ( { cursorStyle: 'line' }} theme="vs-dark" /> + +
+
+

The PTOOLS v2

+

Made by Minhyeok Park

+
+ +
) } diff --git a/src/Editor/style.module.scss b/src/Editor/style.module.scss new file mode 100644 index 0000000..0226933 --- /dev/null +++ b/src/Editor/style.module.scss @@ -0,0 +1,21 @@ +.container { + position: relative; + + .credit { + padding: 1px 0px; + position: absolute; + z-index: 99999; + bottom: 0; + right: 0; + box-sizing: border-box; + display: flex; + align-items: flex-end; + text-align: right; + opacity: 0.25; + + .koishi { + width: 140px; + } + } +} +