Added skill-box

This commit is contained in:
2018-03-18 14:15:00 +11:00
parent 6472f1c360
commit 38536ef19f
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import React from 'react';
import Language from './../../../language/Language';
const SkillBox = function(props) {
return (
<div className={"o-skill-box o-skill-box--" + props.language}>
<h2 className="o-skill-box__heading">
{Language.get("about."+props.language+".name")}
</h2>
<p className="o-skill-box__description">
{Language.get("about."+props.language+".description")}
</p>
</div>
)
}
module.exports = SkillBox;

View File

@ -0,0 +1,29 @@
/*
* Skill Box
* Little skill box.
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/03/18
*/
.o-skill-box {
width: 100%;
padding: 2em 1em;
}
.o-skill-box__heading,
.o-skill-box__description {
text-align: center;
}
.o-skill-box__container {
@extend %t-flexbox;
@include t-flex-wrap(wrap);
}
@include t-media-query($s-small-up) {
.o-skill-box {
width: 50%;
}
}