Skip to content

Commit

Permalink
refactor: style 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LJW25 committed Feb 3, 2024
1 parent 123cc76 commit f9c3cb7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { css } from '@emotion/react';
export const tableStyling = () => {
return css({
'th:first-of-type, th:last-of-type': {
width: '15%',
width: '20%',
},

'th:not(:first-of-type):not(:last-of-type)': {
width: '35%',
width: '30%',
},
});
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Theme } from 'hang-log-design-system';

export const wrapperStyling = css({
width: '400px',
minHeight: '528px',
minHeight: '428px',

'@media screen and (max-width: 600px)': {
width: `calc(100vw - ${Theme.spacer.spacing4})`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const GlobalStyle = css({
backgroundColor: Theme.color.gray200,
},

'th:first-of-type, td:first-of-type': {
'th:first-of-type, th:last-of-type, td:first-of-type, td:last-of-type': {
textAlign: 'center',
},
});

0 comments on commit f9c3cb7

Please sign in to comment.