theme basic

This commit is contained in:
Jan Prochazka
2020-11-10 21:21:22 +01:00
parent c8f7dc3d2c
commit 98d7b3c6b9
23 changed files with 197 additions and 105 deletions

View File

@@ -2,7 +2,7 @@
import React from 'react';
import styled from 'styled-components';
import { FontIcon } from '../icons';
import theme from '../theme';
import dimensions from '../theme/dimensions';
const ButtonDiv = styled.div`
padding: 5px 15px;
@@ -10,7 +10,7 @@ const ButtonDiv = styled.div`
color: black;
border: 0;
border-right: 1px solid #ccc;
height: ${theme.toolBar.height}px;
height: ${dimensions.toolBar.height}px;
${(props) =>
!props.disabled &&