Skip to content

Commit

Permalink
[style] 유저 상세 로고 및 기본정보 배치 수정, 직무 글자크기 줄임 #380
Browse files Browse the repository at this point in the history
  • Loading branch information
godeka committed May 29, 2024
1 parent 7e92fa8 commit b210bc2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions frontend/lib/widgets/user/user_details.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:frontend/widgets/profile_img.dart';
import 'package:frontend/widgets/thermometer/thermometer.dart';

Expand All @@ -24,8 +25,10 @@ class UserDetails extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(
width: 10,
),
(company == '무소속')
? const ProfileImgMedium(
isLocal: true,
Expand All @@ -36,7 +39,7 @@ class UserDetails extends StatelessWidget {
logoUrl: "assets/$company-logo.png",
),
const SizedBox(
width: 35,
width: 30,
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
Expand All @@ -54,7 +57,7 @@ class UserDetails extends StatelessWidget {
),
Text(
position,
style: const TextStyle(fontSize: 18),
style: const TextStyle(fontSize: 16),
),
],
),
Expand Down

0 comments on commit b210bc2

Please sign in to comment.