Skip to content

Commit 45e84c4

Browse files
authored
fix: 화면 크기 작은 device에서 발생하던 overflow 해결 (#68)
Iphone mini (2340 x 1080)에서 발생하던 right overflow를 해결하였습니다.
1 parent 7afa8e2 commit 45e84c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/ongi/lib/screens/signup/mode_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class ModeScreen extends StatelessWidget {
167167
),
168168
child: const Text("부모"),
169169
),
170-
const SizedBox(width: 25),
170+
const SizedBox(width: 20),
171171
ElevatedButton(
172172
onPressed: () => _setModeAndRegister(context, 'child'),
173173
style: ElevatedButton.styleFrom(

0 commit comments

Comments
 (0)