mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
Format front
This commit is contained in:
parent
e1d0d2c186
commit
bc66d35497
@ -2,7 +2,9 @@
|
||||
"name": "web",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"sideEffects": ["./src/polyfill.ts"],
|
||||
"sideEffects": [
|
||||
"./src/polyfill.ts"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
|
@ -292,7 +292,7 @@ export const BlurhashContainer = ({
|
||||
|
||||
useLayoutEffect(() => {
|
||||
// If the html is empty, it was not SSRed.
|
||||
if (ref.current?.innerHTML === '') setRenderType("client");
|
||||
if (ref.current?.innerHTML === "") setRenderType("client");
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
@ -64,7 +64,12 @@ export const Input = forwardRef<
|
||||
onFocus={() => setFocused(true)}
|
||||
onBlur={() => setFocused(false)}
|
||||
{...css(
|
||||
{ flexGrow: 1, color: (theme: Theme) => theme.colors.white, borderWidth: 0, ...focusReset },
|
||||
{
|
||||
flexGrow: 1,
|
||||
color: (theme: Theme) => theme.colors.white,
|
||||
borderWidth: 0,
|
||||
...focusReset,
|
||||
},
|
||||
props,
|
||||
)}
|
||||
/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user