Skip to content

Commit

Permalink
feat : Tab 마진 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
f0rever0 committed Dec 1, 2023
1 parent e976073 commit b9e245c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/views/MainPage/components/Tab/style.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
import styled from '@emotion/styled';
import { colors } from '@sopt-makers/colors';

export const Wrapper = styled.section`
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 38px;
/* 태블릿 뷰 */
@media (max-width: 768px) and (min-width: 376px) {
margin-bottom: 26px;
}
/* 모바일 뷰 */
@media (max-width: 375px) {
margin-bottom: 14px;
}
`;

export const Tab = styled.h2`
Expand Down

0 comments on commit b9e245c

Please sign in to comment.