run formatter

Signed-off-by: alok8bb <alok8bb@gmail.com>
This commit is contained in:
alok8bb 2023-07-29 16:38:16 +05:30
parent cc56e17bd4
commit ae4986c091
No known key found for this signature in database
10 changed files with 842 additions and 438 deletions

View File

@ -6,7 +6,6 @@
"quoteProps": "consistent", "quoteProps": "consistent",
"jsxSingleQuote": false, "jsxSingleQuote": false,
"bracketSpacing": true, "bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "avoid", "arrowParens": "avoid",
"printWidth": 80 "printWidth": 80
} }

1148
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,8 @@ function App() {
display: "flex", display: "flex",
flexDirection: "column", flexDirection: "column",
height: "100%", height: "100%",
}}> }}
>
<Routes> <Routes>
<Route path="/" element={<Home />} /> <Route path="/" element={<Home />} />
<Route path="/:id" element={<Paste />} /> <Route path="/:id" element={<Paste />} />

View File

@ -13,14 +13,16 @@ const BottomBar: FunctionComponent<propTypes> = props => {
justifyContent: "space-between", justifyContent: "space-between",
paddingInline: "15px", paddingInline: "15px",
}} }}
className="BottomBar"> className="BottomBar"
>
<a <a
style={{ style={{
color: "#D9F8C4", color: "#D9F8C4",
cursor: "pointer", cursor: "pointer",
textDecoration: "none", textDecoration: "none",
}} }}
href="/"> href="/"
>
<b>Okiba</b> v1.0 <b>Okiba</b> v1.0
</a> </a>
<ul <ul
@ -29,7 +31,8 @@ const BottomBar: FunctionComponent<propTypes> = props => {
display: "flex", display: "flex",
marginBottom: "2px", marginBottom: "2px",
alignItems: "center", alignItems: "center",
}}> }}
>
{/* make component of these links some day */} {/* make component of these links some day */}
{props.isNewPaste ? ( {props.isNewPaste ? (
@ -40,7 +43,8 @@ const BottomBar: FunctionComponent<propTypes> = props => {
await props.postCallback(); await props.postCallback();
} }
}} }}
style={linkStyle}> style={linkStyle}
>
<li style={listStyle}>save</li> <li style={listStyle}>save</li>
</a> </a>
) : ( ) : (
@ -56,7 +60,8 @@ const BottomBar: FunctionComponent<propTypes> = props => {
<a <a
href={"https://github.com/okiba-org/"} href={"https://github.com/okiba-org/"}
target="_blank" target="_blank"
style={linkStyle}> style={linkStyle}
>
<li style={listStyle}>source</li> <li style={listStyle}>source</li>
</a> </a>
</ul> </ul>
@ -79,7 +84,8 @@ const Separator = () => (
style={{ style={{
fontSize: "1rem", fontSize: "1rem",
color: "#839496", color: "#839496",
}}> }}
>
</div> </div>
); );

View File

@ -1,4 +1,4 @@
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap'); @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap");
* { * {
margin: 0; margin: 0;

View File

@ -1 +1 @@
export const SERVER_URL = import.meta.env.VITE_SERVER_URL export const SERVER_URL = import.meta.env.VITE_SERVER_URL;

View File

@ -1,7 +1,7 @@
import { defineConfig } from 'vite' import { defineConfig } from "vite";
import react from '@vitejs/plugin-react' import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()] plugins: [react()],
}) });