Skip to content

Commit 7d95f9d

Browse files
kazup01Davy-c
authored andcommitted
Doc edit container UI
1 parent 4707e67 commit 7d95f9d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/cloud/components/Views/EditableDocItemContainer.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { lngKeys } from '../../lib/i18n/types'
22
import {
33
mdiContentDuplicate,
4-
mdiDotsVertical,
4+
mdiDotsHorizontal,
55
mdiPencilOutline,
66
mdiTrashCanOutline,
77
} from '@mdi/js'
@@ -150,7 +150,7 @@ const EditableDocItemContainer = ({ doc, children }: ItemProps) => {
150150
onClick={(event) => openActionMenu(event, doc)}
151151
className='doc__action'
152152
>
153-
<Icon size={20} path={mdiDotsVertical} />
153+
<Icon size={20} path={mdiDotsHorizontal} />
154154
</div>
155155
</div>
156156
)}
@@ -169,6 +169,10 @@ const ItemContainer = styled.div`
169169
top: 50%;
170170
transform: translate(-50%, -50%);
171171
172+
&:hover {
173+
cursor: pointer;
174+
}
175+
172176
.doc__action {
173177
width: 20px;
174178
height: 20px;

0 commit comments

Comments
 (0)