mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
fix(sidebar): hide discover button on mobile
This commit is contained in:
parent
8fcda5a6de
commit
1cdc6b51df
1 changed files with 30 additions and 28 deletions
|
@ -388,39 +388,41 @@ export default observer(() => {
|
||||||
</div>
|
</div>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</ServerCircle>
|
</ServerCircle>
|
||||||
<ServerCircle>
|
{!isTouchscreenDevice && (
|
||||||
<Tooltip
|
<ServerCircle>
|
||||||
content={
|
<Tooltip
|
||||||
<div
|
content={
|
||||||
style={{
|
|
||||||
display: "flex",
|
|
||||||
alignItems: "center",
|
|
||||||
gap: "6px",
|
|
||||||
}}>
|
|
||||||
<div>Discover Revolt</div>
|
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
padding: "1px 5px",
|
display: "flex",
|
||||||
fontSize: "11px",
|
alignItems: "center",
|
||||||
background: "var(--status-busy)",
|
gap: "6px",
|
||||||
borderRadius: "60px",
|
|
||||||
}}>
|
}}>
|
||||||
NEW
|
<div>Discover Revolt</div>
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
padding: "1px 5px",
|
||||||
|
fontSize: "11px",
|
||||||
|
background: "var(--status-busy)",
|
||||||
|
borderRadius: "60px",
|
||||||
|
}}>
|
||||||
|
NEW
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
}
|
||||||
|
placement="right">
|
||||||
|
<div className="circle">
|
||||||
|
<IconButton>
|
||||||
|
<Link to="/discover">
|
||||||
|
<a>
|
||||||
|
<Compass size={32} />
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</IconButton>
|
||||||
</div>
|
</div>
|
||||||
}
|
</Tooltip>
|
||||||
placement="right">
|
</ServerCircle>
|
||||||
<div className="circle">
|
)}
|
||||||
<IconButton>
|
|
||||||
<Link to="/discover">
|
|
||||||
<a>
|
|
||||||
<Compass size={32} />
|
|
||||||
</a>
|
|
||||||
</Link>
|
|
||||||
</IconButton>
|
|
||||||
</div>
|
|
||||||
</Tooltip>
|
|
||||||
</ServerCircle>
|
|
||||||
</ServerList>
|
</ServerList>
|
||||||
<PaintCounter small />
|
<PaintCounter small />
|
||||||
{!isTouchscreenDevice && (
|
{!isTouchscreenDevice && (
|
||||||
|
|
Loading…
Reference in a new issue