Use prettier to order tailwind classes

This commit is contained in:
Luke Vella 2022-04-16 10:25:29 +01:00
parent c5c2816c3d
commit eee23c1bb5
52 changed files with 268 additions and 262 deletions

View file

@ -5,10 +5,10 @@ const Header: React.FunctionComponent<{ className?: string }> = (props) => {
const { t } = useTranslation();
return (
<div
className="h-10 shrink-0 border-gray-200 px-6 flex items-center"
className="flex h-10 shrink-0 items-center border-gray-200 px-6"
{...props}
>
<div className="text-base font-bold text-gray-400 uppercase">
<div className="text-base font-bold uppercase text-gray-400">
{t("appName")}
</div>
<div className="ml-2 text-xs text-gray-400">v2-alpha</div>