Added button to main homepage

This commit is contained in:
Camerin Figueroa 2022-02-14 13:44:46 -05:00
parent a55fb6713a
commit 9c90cd5d80
2 changed files with 10 additions and 0 deletions

View File

@ -30,6 +30,15 @@ html, body {
height:100%; 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) { @media only screen and (max-width: 600px) {
.App { .App {
flex-direction: column-reverse; flex-direction: column-reverse;

View File

@ -23,6 +23,7 @@ const Card = (props) => {
<div className="children"> <div className="children">
{props.children} {props.children}
</div> </div>
<Link className="btn" to={props.link}>Learn More</Link>
</div> </div>
</div> </div>
); );