mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 15:10:57 -05:00
Fix scrollbar on server list.
This commit is contained in:
parent
8c6947f7d4
commit
e12ebc9b0d
1 changed files with 20 additions and 17 deletions
|
@ -99,8 +99,7 @@ const ServerEntry = styled.div<{ active: boolean; home?: boolean }>`
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
height: 42px;
|
height: 42px;
|
||||||
padding-left: 4px;
|
padding-left: 10px;
|
||||||
padding-right: 6px;
|
|
||||||
|
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
|
@ -132,9 +131,7 @@ const ServerEntry = styled.div<{ active: boolean; home?: boolean }>`
|
||||||
`}
|
`}
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
width: 57px;
|
margin-top: 5px;
|
||||||
height: 117px;
|
|
||||||
margin-top: 4px;
|
|
||||||
display: relative;
|
display: relative;
|
||||||
|
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
@ -153,13 +150,23 @@ function Swoosh() {
|
||||||
return (
|
return (
|
||||||
<span>
|
<span>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
width="56"
|
||||||
width="57"
|
height="103"
|
||||||
height="117"
|
viewBox="0 0 56 103"
|
||||||
fill="var(--sidebar-active)">
|
fill="none"
|
||||||
<path d="M27.746 86.465c14 0 28 11.407 28 28s.256-56 .256-56-42.256 28-28.256 28z" />
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
<path d="M56 58.465c0 15.464-12.536 28-28 28s-28-12.536-28-28 12.536-28 28-28 28 12.536 28 28z" />
|
<path
|
||||||
<path d="M28.002 30.465c14 0 28-11.407 28-28s0 56 0 56-42-28-28-28z" />
|
d="M55.0368 51.5947C55.0368 64.8596 44.2834 75.613 31.0184 75.613C17.7534 75.613 7 64.8596 7 51.5947C7 38.3297 17.7534 27.5763 31.0184 27.5763C44.2834 27.5763 55.0368 38.3297 55.0368 51.5947Z"
|
||||||
|
fill="var(--sidebar-active)"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M55.8809 1C55.5597 16.9971 34.4597 25.2244 24.0847 28.6715L55.8846 60.4859L55.8809 1Z"
|
||||||
|
fill="var(--sidebar-active)"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M55.8809 102.249C55.5597 86.2516 34.4597 78.0243 24.0847 74.5771L55.8846 42.7627L55.8809 102.249Z"
|
||||||
|
fill="var(--sidebar-active)"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
@ -240,11 +247,7 @@ export function ServerListSidebar({ unreads, lastOpened }: Props) {
|
||||||
}>
|
}>
|
||||||
<UserHover user={self}>
|
<UserHover user={self}>
|
||||||
<Icon size={42} unread={homeUnread}>
|
<Icon size={42} unread={homeUnread}>
|
||||||
<UserIcon
|
<UserIcon target={self} size={32} status />
|
||||||
target={self}
|
|
||||||
size={32}
|
|
||||||
status
|
|
||||||
/>
|
|
||||||
</Icon>
|
</Icon>
|
||||||
</UserHover>
|
</UserHover>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue