prettier and tag
This commit is contained in:
Utku
2023-11-25 04:49:52 +03:00
committed by GitHub
parent 124a9152d0
commit abda5ffb59
5 changed files with 13 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ export const AddLocationButton = ({ path, className, onClick, ...props }: AddLoc
{...props}
>
{path ? (
<div className="flex flex-row items-end w-full h-full font-mono text-sm whitespace-nowrap">
<div className="flex h-full w-full flex-row items-end whitespace-nowrap font-mono text-sm">
<FolderSimplePlus size={22} className="shrink-0" />
<div className="ml-1 overflow-hidden">
<motion.span

View File

@@ -171,7 +171,7 @@ body {
@apply rounded-[6px] bg-transparent;
}
&::-webkit-scrollbar-thumb {
@apply rounded-[6px] bg-white/20
@apply rounded-[6px] bg-white/20;
}
}
.job-manager-scroll {

View File

@@ -42,7 +42,7 @@ export const useKeyCopyCutPaste = () => {
sourceParentPath: path ?? '/',
type: 'Copy',
indexedArgs,
ephemeralArgs,
ephemeralArgs
};
}
});
@@ -54,7 +54,7 @@ export const useKeyCopyCutPaste = () => {
sourceParentPath: path ?? '/',
type: 'Cut',
indexedArgs,
ephemeralArgs,
ephemeralArgs
};
}
});

View File

@@ -13,7 +13,14 @@ import { dirname, join } from 'node:path';
import { fileURLToPath } from 'node:url';
import prettier from 'prettier';
const assetFolders = ['icons', 'images', 'svgs/brands', 'svgs/ext/Extras', 'svgs/ext/Code', 'videos'];
const assetFolders = [
'icons',
'images',
'svgs/brands',
'svgs/ext/Extras',
'svgs/ext/Code',
'videos'
];
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

View File

@@ -1,5 +1,3 @@
import Fda from './fda.mp4';
export {
Fda
}
export { Fda };