From b96b9d350a857af461ddc4b732cdbe00b20b67ee Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Tue, 30 Jun 2020 16:41:26 -0300 Subject: [PATCH] :ok_hand: use remSize on IconButton --- client/components/mobile/IconButton.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/components/mobile/IconButton.jsx b/client/components/mobile/IconButton.jsx index 0aeed2b7..544612b4 100644 --- a/client/components/mobile/IconButton.jsx +++ b/client/components/mobile/IconButton.jsx @@ -2,9 +2,10 @@ import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; import Button from '../../common/Button'; +import { remSize } from '../../theme'; const ButtonWrapper = styled(Button)` -width: 3rem; +width: ${remSize(48)}; > svg { width: 100%; height: 100%;