Adding illustration, stylistic changes

This commit is contained in:
Moris Zen
2018-08-08 01:12:04 +02:00
parent 3a4cb6382d
commit 0e5a2f40c5
8 changed files with 787 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ const Card = ({ ...props }) => (
<img className="w-full" src={ImgSprint} alt="Sprint Work" />
)}
</Link>
<div className="px-6 py-4 bg-white">
<div className="px-6 py-4">
<Link className="no-underline" to={props.url}>
<h3 className="text-black font-bold text-xl mb-2">{props.title}</h3>
</Link>

View File

@@ -1,5 +1,5 @@
.menu_icon [class*='menu_bar-'] {
background: #000;
background: #8448f7;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transition: 0.2s ease all;

View File

@@ -32,6 +32,7 @@ const IntroDefault = ({ ...props }) => (
{props.text}
</p>
)}
{props.children}
</div>
)