Skip to content

Commit

Permalink
style:eslint 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
ss0526100 committed Oct 23, 2024
1 parent 91f4ae3 commit d24e407
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import { SerializedStyles, css } from '@emotion/react';

export const name = ({ font }: { font: string | SerializedStyles }) => css`
${font}
max-width: 40vw;
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ProfileFrame/ProfileFrame.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const profileFrame = ({
width: ${width}rem;
height: ${height}rem;
background: ${theme.colorPalette.white[100]};
background: ${theme.colorPalette.white[100]};
border: ${borderWidth}rem solid ${theme.colorPalette.orange[200]};
border-radius: 300rem;
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ import { css } from '@emotion/react';
// TODO: 바텀 버튼 UI에 대한 기획 논의 필요
export const bottomFixedStyle = css`
position: fixed;
bottom: 26px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
bottom: 26px;
gap: 1rem;
align-items: center;
justify-content: center;
width: 100%;
max-width: ${DISPLAY_MAX_WIDTH};
padding: 0 16px;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { css } from '@emotion/react';

export const footerStyle = css`
margin: 1rem 0 0 0;
margin: 1rem 0 0;
padding: 0 24px 48px;
text-align: center;
`;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { css, Theme } from '@emotion/react';

export const explanationSection = ({ theme }: { theme: Theme }) => css`
margin: 0rem 5rem;
margin: 0 5rem;
${theme.typography.s1}
`;

0 comments on commit d24e407

Please sign in to comment.