This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-07 15:27:57 +03:00

23 lines
559 B
JavaScript

import { Box, Flex } from 'client/UIKit/grid';
import React from 'react';
import Results from './Results';
import Sections from './Sections';
const Calculation = () => {
return (
<Box mx={['0', '1%', '1%', '1.5%', '10%']}>
<Flex flexWrap="wrap" mb="50px">
<Sections flex="3 0 65%" />
<Results
flex="1 0 20%"
justifyContent="center"
// position={['sticky', 'sticky', 'sticky', 'relative']}
// bottom={[0, 0, 0, null]}
/>
</Flex>
</Box>
);
};
export default Calculation;