Skip to content

Commit

Permalink
refactor: 행동디자인을 적용하면서 사용하지 않는 스타일 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Aug 7, 2024
1 parent a52225e commit c30a6ef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,3 @@ export const inputGroupStyle = css({
overflow: 'auto',
paddingBottom: '11rem',
});

// 이거 행동 디자인에서 만들어져야하는데
export const buttonStyle = css({
display: 'flex',
justifyContent: 'space-between',
alignContent: 'center',

width: '3rem',

borderRadius: '1rem',

backgroundColor: 'gray',
});
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {BottomSheet, Flex, Input, Text, IconButton, FixedButton, Icon} from 'hae
import useDeleteMemberAction from '@hooks/useDeleteMemberAction/useDeleteMemberAction';
import {useStepList} from '@hooks/useStepList/useStepList';

import {bottomSheetHeaderStyle, bottomSheetStyle, buttonStyle, inputGroupStyle} from './DeleteMemberActionModal.style';
import {bottomSheetHeaderStyle, bottomSheetStyle, inputGroupStyle} from './DeleteMemberActionModal.style';

type DeleteMemberActionModalProps = {
memberActionType: MemberType;
Expand Down

0 comments on commit c30a6ef

Please sign in to comment.