mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-02 17:12:16 +03:00
Use prettier-plugin-tailwindcss (#11373)
* use prettier-plugin-tailwindcss to keep class names organized * use prettierrc file to ensure formatting on save works with vscode * classname reorder with prettier-plugin-tailwindcss
This commit is contained in:
@@ -35,7 +35,7 @@ export default function ReviewCard({
|
||||
|
||||
return (
|
||||
<div
|
||||
className="w-full relative flex flex-col gap-1.5 cursor-pointer"
|
||||
className="relative flex w-full cursor-pointer flex-col gap-1.5"
|
||||
onClick={onClick}
|
||||
>
|
||||
<ImageLoadingIndicator
|
||||
@@ -51,8 +51,8 @@ export default function ReviewCard({
|
||||
onImgLoad();
|
||||
}}
|
||||
/>
|
||||
<div className="flex justify-between items-center">
|
||||
<div className="flex justify-evenly items-center gap-1">
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="flex items-center justify-evenly gap-1">
|
||||
{event.data.objects.map((object) => {
|
||||
return getIconForLabel(object, "size-3 text-white");
|
||||
})}
|
||||
|
||||
Reference in New Issue
Block a user