Added button to main homepage
This commit is contained in:
parent
a55fb6713a
commit
9c90cd5d80
|
|
@ -30,6 +30,15 @@ html, body {
|
|||
height:100%;
|
||||
}
|
||||
|
||||
.btn {
|
||||
border-style: solid;
|
||||
border-color: #837483;
|
||||
border-radius: 5px;
|
||||
border-width: 1px;
|
||||
background-color: #373747;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
.App {
|
||||
flex-direction: column-reverse;
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ const Card = (props) => {
|
|||
<div className="children">
|
||||
{props.children}
|
||||
</div>
|
||||
<Link className="btn" to={props.link}>Learn More</Link>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue