mirror of
https://github.com/okiba-org/frontend.git
synced 2025-02-22 09:12:04 +00:00
run formatter
Signed-off-by: alok8bb <alok8bb@gmail.com>
This commit is contained in:
parent
cc56e17bd4
commit
ae4986c091
@ -6,7 +6,6 @@
|
||||
"quoteProps": "consistent",
|
||||
"jsxSingleQuote": false,
|
||||
"bracketSpacing": true,
|
||||
"jsxBracketSameLine": true,
|
||||
"arrowParens": "avoid",
|
||||
"printWidth": 80
|
||||
}
|
1148
pnpm-lock.yaml
generated
1148
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,8 @@ function App() {
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
height: "100%",
|
||||
}}>
|
||||
}}
|
||||
>
|
||||
<Routes>
|
||||
<Route path="/" element={<Home />} />
|
||||
<Route path="/:id" element={<Paste />} />
|
||||
|
@ -13,14 +13,16 @@ const BottomBar: FunctionComponent<propTypes> = props => {
|
||||
justifyContent: "space-between",
|
||||
paddingInline: "15px",
|
||||
}}
|
||||
className="BottomBar">
|
||||
className="BottomBar"
|
||||
>
|
||||
<a
|
||||
style={{
|
||||
color: "#D9F8C4",
|
||||
cursor: "pointer",
|
||||
textDecoration: "none",
|
||||
}}
|
||||
href="/">
|
||||
href="/"
|
||||
>
|
||||
<b>Okiba</b> v1.0
|
||||
</a>
|
||||
<ul
|
||||
@ -29,7 +31,8 @@ const BottomBar: FunctionComponent<propTypes> = props => {
|
||||
display: "flex",
|
||||
marginBottom: "2px",
|
||||
alignItems: "center",
|
||||
}}>
|
||||
}}
|
||||
>
|
||||
{/* make component of these links some day */}
|
||||
|
||||
{props.isNewPaste ? (
|
||||
@ -40,7 +43,8 @@ const BottomBar: FunctionComponent<propTypes> = props => {
|
||||
await props.postCallback();
|
||||
}
|
||||
}}
|
||||
style={linkStyle}>
|
||||
style={linkStyle}
|
||||
>
|
||||
<li style={listStyle}>save</li>
|
||||
</a>
|
||||
) : (
|
||||
@ -56,7 +60,8 @@ const BottomBar: FunctionComponent<propTypes> = props => {
|
||||
<a
|
||||
href={"https://github.com/okiba-org/"}
|
||||
target="_blank"
|
||||
style={linkStyle}>
|
||||
style={linkStyle}
|
||||
>
|
||||
<li style={listStyle}>source</li>
|
||||
</a>
|
||||
</ul>
|
||||
@ -79,7 +84,8 @@ const Separator = () => (
|
||||
style={{
|
||||
fontSize: "1rem",
|
||||
color: "#839496",
|
||||
}}>
|
||||
}}
|
||||
>
|
||||
•
|
||||
</div>
|
||||
);
|
||||
|
@ -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;
|
||||
|
@ -1 +1 @@
|
||||
export const SERVER_URL = import.meta.env.VITE_SERVER_URL
|
||||
export const SERVER_URL = import.meta.env.VITE_SERVER_URL;
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()]
|
||||
})
|
||||
plugins: [react()],
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user