style kifu

This commit is contained in:
sorrelbri 2020-06-21 16:32:24 -07:00
parent 8414d13949
commit 35c51c567f
2 changed files with 17 additions and 3 deletions

View file

@ -2,10 +2,11 @@ import React from "react";
import "./Kifu.scss";
const Kifu = ({ ...props }) => {
console.log(props);
return (
<>
<p>Kifu</p>
</>
<div className="Kifu">
<div className="Kifu__board"></div>
</div>
);
};

View file

@ -0,0 +1,13 @@
div.Kifu {
order: 0;
height: 10vh;
width: 8vh;
background-color: #FFF;
transform: rotate(-20deg);
div.Kifu__board {
border: 0.25vh solid #444;
width: 5vh;
height: 5vh;
margin: 1vh 2vh 2vh auto;
}
}