Skip to content

Commit

Permalink
design: 드래그 시 선택 영역 색상 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
corinthionia committed Mar 12, 2024
1 parent ae310e3 commit c4de46f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/addTime/table/index.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ export const Time = styled.div`
export const SelectWrapper = styled.div`
width: 70px;
.mpr-designer-selection {
border: none !important;
background: none !important;
}
& + & {
width: 71px;
border-left: 1px solid ${theme.colors.addTableBorder};
Expand Down
1 change: 1 addition & 0 deletions src/components/addTime/table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const Table = ({
({ date, isValidDate }: { date: string; isValidDate: boolean }) => (
<SelectWrapper key={date} className="container">
<Selecto
className="mpr-designer-selection"
ref={selectoRef}
dragContainer={'.container'}
selectableTargets={['.valid']}
Expand Down

0 comments on commit c4de46f

Please sign in to comment.