diff --git a/frontend/src/components/ListFilter/ListFilter.tsx b/frontend/src/components/ListFilter/ListFilter.tsx
index b86824dc8..9cd47c710 100644
--- a/frontend/src/components/ListFilter/ListFilter.tsx
+++ b/frontend/src/components/ListFilter/ListFilter.tsx
@@ -20,15 +20,17 @@ const ListFilter = ({ options, selectOption, width, fontSize }: Props) => {
{options.map((option) => (
-
-
- {option.label}
-
-
+
+
+
+ {option.label}
+
+
+
))}
@@ -100,4 +102,8 @@ const S = {
${({ $isSelected }) => ($isSelected ? underLine : null)}
}
`,
+
+ ButtonWrapper: styled.div`
+ width: 150px;
+ `,
};
diff --git a/frontend/src/components/MyPage/MyPagePostButton/MyPagePostButton.tsx b/frontend/src/components/MyPage/MyPagePostButton/MyPagePostButton.tsx
index 066014baa..7769fedf2 100644
--- a/frontend/src/components/MyPage/MyPagePostButton/MyPagePostButton.tsx
+++ b/frontend/src/components/MyPage/MyPagePostButton/MyPagePostButton.tsx
@@ -136,7 +136,7 @@ const S = {
@media (max-width: 768px) {
width: 100%;
- margin-top: 18px;
+ margin-top: 15px;
}
`,
};
diff --git a/frontend/src/components/RunnerPost/RunnerPostItem/RunnerPostItem.tsx b/frontend/src/components/RunnerPost/RunnerPostItem/RunnerPostItem.tsx
index bbf15c434..389df6149 100644
--- a/frontend/src/components/RunnerPost/RunnerPostItem/RunnerPostItem.tsx
+++ b/frontend/src/components/RunnerPost/RunnerPostItem/RunnerPostItem.tsx
@@ -127,6 +127,10 @@ const S = {
`,
TagContainer: styled.div`
+ @media (max-width: 768px) {
+ max-width: 200px;
+ }
+
& span {
margin-right: 10px;
diff --git a/frontend/src/components/common/Button/Button.tsx b/frontend/src/components/common/Button/Button.tsx
index 1cb8c464b..eca48f94f 100644
--- a/frontend/src/components/common/Button/Button.tsx
+++ b/frontend/src/components/common/Button/Button.tsx
@@ -66,16 +66,15 @@ const S = {
width: ${({ $width }) => $width || '180px'};
height: ${({ $height }) => $height || '40px'};
- padding: 10px 10px;
+ padding: 5px 0;
font-size: ${({ $fontSize }) => $fontSize || '18px'};
font-weight: ${({ $fontWeight }) => $fontWeight || '400'};
- visibility: ${({ $disabled }) => ($disabled ? 'hidden' : 'visible')};
+ display: ${({ $disabled }) => ($disabled ? 'none' : 'block')};
@media (max-width: 768px) {
width: ${({ $width }) => $width || '180px'};
- height: 100%;
}
`,
};
diff --git a/frontend/src/layout/Header.tsx b/frontend/src/layout/Header.tsx
index e9553d5a4..da454e817 100644
--- a/frontend/src/layout/Header.tsx
+++ b/frontend/src/layout/Header.tsx
@@ -51,7 +51,13 @@ const Header = () => {
{isMobile ? null : {profile?.name}}
-