This commit is contained in:
Владислав Чикалкин 2020-09-03 13:27:32 +03:00
parent feb2d11324
commit 2438a6c92d
3 changed files with 10 additions and 5 deletions

View File

@ -11,9 +11,9 @@ const { TabPane } = Tabs;
const InputWrapper = styled(Box)`
width: 100%;
${mq.desktop`flex: 2 0 23%;
width:23%;
`}
// ${mq.desktop`flex: 2 0 23%;
// width:23%;
// `}
margin: 8px 8px;
// ${(props) => props.newLine && 'flex-basis: 100%;'}

View File

@ -1,13 +1,18 @@
import colors from 'client/UIKit/colors';
import { Box, Flex } from 'client/UIKit/grid';
import styled from 'styled-components';
import mq from 'client/UIKit/mq';
const Background = styled(Flex)`
background: ${colors.white[0]};
margin: 10px 10px;
padding: 10px 18px;
margin: 7px 0 10px;
${mq.desktop`
margin: 10px 10px;
`}
box-shadow: 4px 5px 17px -11px rgba(0, 0, 0, 0.75);
flex: ${(props) => props.flex};
max-width: 100%;
`;
export default Background;

View File

@ -15,7 +15,7 @@ const Header = () => (
</Link>
)
)} */}
<LogoText>Evo Calculator</LogoText>
<LogoText>EVO Calculator</LogoText>
</Flex>
);