Skip to content

Commit eb01256

Browse files
committed
Run pnpm fix:prettier
1 parent ae410ab commit eb01256

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

app/[locale]/layout/locale-switcher-inner.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function LocaleListItem({
6262
onStopHighlighting: () => void;
6363
}) {
6464
return (
65-
<li className="-mt-3 -mr-3 inline-block">
65+
<li className="-mr-3 -mt-3 inline-block">
6666
{href ? (
6767
<Link
6868
className="border-bottom-0 group relative inline-block border-none p-3"
@@ -122,7 +122,7 @@ export default function LocaleSwitcherInner({
122122
}, [locale]);
123123

124124
return (
125-
<div className="-mr-5 -mt-4 -mb-10 -ml-10 self-end overflow-hidden pr-5 pl-10 pt-4 pb-10 leading-3">
125+
<div className="-mb-10 -ml-10 -mr-5 -mt-4 self-end overflow-hidden pb-10 pl-10 pr-5 pt-4 leading-3">
126126
<ul>
127127
{i18n.locales.map((currentLocale) => {
128128
return (

app/[locale]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default async function Page({ params: { locale } }: PageProps) {
4949
</p>
5050

5151
{/* Photo */}
52-
<div className="float-right mt-1 ml-8 mb-8">
52+
<div className="float-right mb-8 ml-8 mt-1">
5353
<Image
5454
className="overflow-hidden rounded-[5px] bg-gray-300 text-gray-300"
5555
width={100}

app/[locale]/page/key-profiles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function KeyProfile({
4141
{name}
4242
</a>
4343
</h2>
44-
<p className="mt-[1px] mb-3 opacity-60">{children ?? <>&nbsp;</>}</p>
44+
<p className="mb-3 mt-[1px] opacity-60">{children ?? <>&nbsp;</>}</p>
4545
</>
4646
);
4747
}

app/[locale]/photos/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function PhotoSample({ alt }: { alt: string }) {
1616
alt={alt}
1717
src="https://farm8.staticflickr.com/7247/7511763574_d528f4ce04_z_d.jpg"
1818
/>
19-
<span className="absolute right-[1.5rem] bottom-[.5rem] h-0 w-0 origin-bottom-left -rotate-90 overflow-visible whitespace-nowrap text-sm !text-white opacity-80 shadow-md drop-shadow-md">
19+
<span className="absolute bottom-[.5rem] right-[1.5rem] h-0 w-0 origin-bottom-left -rotate-90 overflow-visible whitespace-nowrap text-sm !text-white opacity-80 shadow-md drop-shadow-md">
2020
kachkaev.ru/photos
2121
</span>
2222
<span className="absolute inset-x-0 bottom-0 block group-hover:border-t-2 group-hover:border-t-red-500" />

app/[locale]/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
@layer components {
5353
.description-on-index-page {
54-
@apply mb-0 pt-4 pb-8;
54+
@apply mb-0 pb-8 pt-4;
5555
}
5656

5757
@media (min-width: 310px) {

0 commit comments

Comments
 (0)