Skip to content

Commit 4973fe1

Browse files
committed
biome fix unsafe
1 parent c0665f6 commit 4973fe1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

web/app/signup/steps/step2_img.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default function Step2({
6969
</div>
7070
</div>
7171
</div>
72-
<div className="p-6 fixed flex justify-between bottom-0 w-full">
72+
<div className="fixed bottom-0 flex w-full justify-between p-6">
7373
<button type="button" onClick={back} className="btn">
7474
前へ
7575
</button>

web/app/signup/steps/step3_confirmation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function Confirmation({
4141
<p>この内容で登録しますか?</p>
4242
</div>
4343
</div>
44-
<div className="p-3 fixed flex justify-between bottom-0 w-full">
44+
<div className="fixed bottom-0 flex w-full justify-between p-3">
4545
<button type="button" onClick={back} className="btn">
4646
前へ
4747
</button>

web/components/config/PhotoPreview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function PhotoPreviewButton({ text, onSelect }: ButtonProps) {
1919
const inputRef: React.LegacyRef<HTMLInputElement> = useRef(null);
2020
return (
2121
<label
22-
className="btn btn-primary text-white w-[70vw] h-12 mt-[10vh] text-lg font-sans font-normal"
22+
className="btn btn-primary mt-[10vh] h-12 w-[70vw] font-normal font-sans text-lg text-white"
2323
onClick={() => {
2424
if (inputRef.current) inputRef.current.value = "";
2525
}}

0 commit comments

Comments
 (0)