Skip to content

Commit

Permalink
design: (#740) 신고된 내역 확인 페이지 글씨크기 키우기 및 반응형 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
chsua committed Oct 16, 2023
1 parent 073277b commit bcde780
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/common/AlarmContainer/ListStyle.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import styled from 'styled-components';

export const Description = styled.p`
font-size: 1.4rem;
font: var(--text-default);
text-align: center;
`;

export const ListContainer = styled.ul`
font-size: 1.4rem;
font: var(--text-default);
`;

export const ListItem = styled.li<{ $isRead: boolean }>`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const Description = styled.p`
font-weight: 700;
@media (max-width: 375px) and (min-width: 280px) {
font-size: 1.4rem;
font: var(--text-default);
}
`;

Expand Down
14 changes: 12 additions & 2 deletions frontend/src/pages/ReportAlarmPage/ReportConfirmResult/style.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
import styled from 'styled-components';

import { theme } from '@styles/theme';

export const Container = styled.ul`
display: flex;
flex-direction: column;
padding-left: 20px;
gap: 10px;
font: var(--text-caption);
@media (min-width: ${theme.breakpoint.sm}) {
font: var(--text-body);
}
`;

export const List = styled.ul`
Expand All @@ -15,11 +21,15 @@ export const List = styled.ul`
padding-left: 30px;
margin-top: 10px;
font-size: 1.4rem;
font: var(--text-default);
@media (min-width: ${theme.breakpoint.sm}) {
font: var(--text-caption);
}
`;

export const ListItem = styled.li`
margin: 5px 0;
margin: 10px 0;
list-style-type: disc;
`;
Expand Down

0 comments on commit bcde780

Please sign in to comment.