Skip to content

Commit

Permalink
[style] 유저 상세 마진 및 배치 조정 #380
Browse files Browse the repository at this point in the history
  • Loading branch information
godeka committed May 30, 2024
1 parent 5505ec1 commit f18903c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/lib/widgets/thermometer/thermometer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Thermometer extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
margin: const EdgeInsets.all(10),
margin: const EdgeInsets.symmetric(vertical: 10),
width: 280,
height: 20,
decoration: BoxDecoration(
Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/widgets/user/user_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class UserDetails extends StatelessWidget {
Row(
children: [
const SizedBox(
width: 20,
width: 10,
),
(company == '무소속')
? const ProfileImgMedium(
Expand Down
2 changes: 1 addition & 1 deletion frontend/lib/widgets/user/user_details_modal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class UserDetailsModal extends StatelessWidget {
borderRadius: BorderRadius.circular(20),
),
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 25, horizontal: 20),
padding: const EdgeInsets.symmetric(vertical: 25, horizontal: 25),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand Down

0 comments on commit f18903c

Please sign in to comment.