Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/components/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function Card({ to, header, body, externalIcon = false }) {
*/

return (
<div className={clsx("col col--4 ", styles.feature)}>
<div className={clsx("col col--4 ")}>
<Link className="navbar__link card" to={to}>
<div className="card__header">
<h3>
Expand Down
35 changes: 0 additions & 35 deletions docs/src/pages/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,41 +5,6 @@
* and scoped locally.
*/

.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}

@media screen and (max-width: 966px) {
.heroBanner {
padding: 2rem;
}
}

.cardTitle {
color: green;
}

.buttons {
display: flex;
align-items: center;
justify-content: center;
}

.features {
display: flex;
align-items: top;
padding: 2rem 0;
width: 100%;
}

.featureImage {
height: 200px;
width: 200px;
}

.iconExternalIcon {
margin-left: 0.5em;
}