mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Fix message reply overflow.
Add opera icon to sessions.
This commit is contained in:
parent
f2a69daf03
commit
6cf18b1b9b
2 changed files with 6 additions and 1 deletions
|
@ -29,6 +29,7 @@ export const ReplyBase = styled.div<{
|
|||
preview?: boolean;
|
||||
}>`
|
||||
gap: 4px;
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
margin-inline-start: 30px;
|
||||
margin-inline-end: 12px;
|
||||
|
@ -45,10 +46,11 @@ export const ReplyBase = styled.div<{
|
|||
}
|
||||
|
||||
.user {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
font-weight: 600;
|
||||
overflow: visible;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
|
|
|
@ -6,6 +6,7 @@ import {
|
|||
Microsoftedge,
|
||||
Linux,
|
||||
Macos,
|
||||
Opera,
|
||||
} from "@styled-icons/simple-icons";
|
||||
import relativeTime from "dayjs/plugin/relativeTime";
|
||||
import { useHistory } from "react-router-dom";
|
||||
|
@ -70,6 +71,8 @@ export function Sessions() {
|
|||
return <Safari size={32} />;
|
||||
case /edge/i.test(name):
|
||||
return <Microsoftedge size={32} />;
|
||||
case /opera/i.test(name):
|
||||
return <Opera size={32} />;
|
||||
default:
|
||||
return <HelpCircle size={32} />;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue