From 851e4cb660eb8c2c89318c3746af3f4456fd1056 Mon Sep 17 00:00:00 2001 From: Artem Tarasov Date: Tue, 27 Oct 2020 11:53:36 +0300 Subject: [PATCH] Web: Components: row: fixed padding options button --- web/ASC.Web.Components/src/components/row/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/ASC.Web.Components/src/components/row/index.js b/web/ASC.Web.Components/src/components/row/index.js index db1d7d6507..94ca000b33 100644 --- a/web/ASC.Web.Components/src/components/row/index.js +++ b/web/ASC.Web.Components/src/components/row/index.js @@ -4,7 +4,7 @@ import PropTypes from "prop-types"; import React from "react"; import isEqual from "lodash/isEqual"; import styled from "styled-components"; -import { tablet, mobile } from "../../utils/device"; +import { tablet } from "../../utils/device"; const StyledRow = styled.div` cursor: default; @@ -66,7 +66,7 @@ const StyledOptionButton = styled.div` .expandButton > div:first-child { padding: 8px 8px 8px 7px; - @media ${mobile} { + @media (max-width: 516px) { padding-left: 10px; } }