mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-26 00:50:56 -05:00
fix(msgbar): use vertical dots
This commit is contained in:
parent
4a58a4082b
commit
a3005cfcd8
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { DotsHorizontalRounded, LinkAlt } from "@styled-icons/boxicons-regular";
|
import { DotsVerticalRounded, LinkAlt } from "@styled-icons/boxicons-regular";
|
||||||
import {
|
import {
|
||||||
Pencil,
|
Pencil,
|
||||||
Trash,
|
Trash,
|
||||||
|
@ -63,13 +63,13 @@ const Entry = styled.div`
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: 0.2s ease background-color;
|
transition: 0.2s ease background-color;
|
||||||
border-radius: var(--border-radius);
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: var(--secondary-header);
|
background: var(--secondary-header);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
|
border-radius: var(--border-radius);
|
||||||
box-shadow: 0 0 0 2.5pt var(--accent);
|
box-shadow: 0 0 0 2.5pt var(--accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ export const MessageOverlayBar = observer(({ message, queued }: Props) => {
|
||||||
})
|
})
|
||||||
}>
|
}>
|
||||||
<IconButton>
|
<IconButton>
|
||||||
<DotsHorizontalRounded size={18} />
|
<DotsVerticalRounded size={18} />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Entry>
|
</Entry>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|
Loading…
Reference in a new issue