style update

This commit is contained in:
Cássio Zen 2016-07-13 19:32:41 -03:00
parent f4b44c5661
commit 2746d91e39
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ export default class ImageCard extends React.Component {
return (
<Card onClick={onClick}>
<img src={image} />
<h1>{text}</h1>
<h4>{text}</h4>
</Card>
);
}

View File

@ -1,7 +1,7 @@
:root {
--defaultColor: #333;
--backgroundColor: #fff;
--shadowColor: rgba(0, 0, 0, 0.25);
--shadowColor: rgba(0, 0, 0, 0.117647);
--successColor: #1c7;
--warningColor: #fa0;
--errorColor: #f52;
@ -17,9 +17,9 @@
}
.rounded {
border-radius: 6px;
border-radius: 2px;
}
.depth {
box-shadow: 0px 1px 2px 0px var(--shadowColor);
box-shadow: var(--shadowColor) 0px 1px 6px, var(--shadowColor) 0px 1px 4px;
}