mirror of
https://github.com/spacebarchat/client.git
synced 2024-11-22 10:22:30 +01:00
Update ChannelSidebar.tsx
This commit is contained in:
parent
960f9bf875
commit
32208f5ef3
@ -1,4 +1,4 @@
|
|||||||
import { useMediaQuery, useWindowSize } from "@uidotdev/usehooks";
|
import { useWindowSize } from "@uidotdev/usehooks";
|
||||||
import { observer } from "mobx-react-lite";
|
import { observer } from "mobx-react-lite";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { isDesktop } from "react-device-detect";
|
import { isDesktop } from "react-device-detect";
|
||||||
@ -17,7 +17,7 @@ const Wrapper = styled(Container)`
|
|||||||
|
|
||||||
function ChannelSidebar() {
|
function ChannelSidebar() {
|
||||||
const windowSize = useWindowSize();
|
const windowSize = useWindowSize();
|
||||||
const isSmallScreen = useMediaQuery("only screen and (max-width: 810px)");
|
//const isSmallScreen = useMediaQuery("only screen and (max-width: 810px)");
|
||||||
const [size, setSize] = useState<number | undefined>();
|
const [size, setSize] = useState<number | undefined>();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -29,7 +29,7 @@ function ChannelSidebar() {
|
|||||||
return (
|
return (
|
||||||
<Wrapper
|
<Wrapper
|
||||||
style={
|
style={
|
||||||
isSmallScreen && !isDesktop
|
!isDesktop
|
||||||
? {
|
? {
|
||||||
width: size,
|
width: size,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user