Client: Dialogs: AvatarEditorDialog: hide preview on mobile

This commit is contained in:
Viktor Fomin 2022-09-07 07:57:20 +03:00
parent 3b232cfb5b
commit e6be6f39f1

View File

@ -4,12 +4,18 @@ import styled from "styled-components";
import Avatar from "@docspace/components/avatar";
import Text from "@docspace/components/text";
import { hugeMobile } from "@docspace/components/utils/device";
const StyledWrapper = styled.div`
width: 100%;
display: flex;
flex-direction: column;
gap: 24px;
@media ${hugeMobile} {
display: none;
}
.avatar {
height: 124px;
width: 124px;