Skip to content

Commit

Permalink
Add space between navigation cards
Browse files Browse the repository at this point in the history
  • Loading branch information
gvdongen committed Jun 11, 2024
1 parent 5f6d60b commit b989875
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/NavigationCards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function NavigationCards({ features }): JSX.Element {
<div className="container">
<div className="row">
{features.map((props, idx) => (
<div className={clsx('col col--3')}>
<div className={clsx('col col--3 margin-vert--md')}>
<NavigationCard key={idx} {...props} />
</div>
))}
Expand Down
2 changes: 1 addition & 1 deletion src/css/new-design.css
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ details {
background-color: var(--ifm-color-info-contrast-background) !important;
}
*[class*="featureFamiliar"] *[class*="circleFamiliar"] {
border-color: #a27dff4a !important;
border-color: #4CB3D426 !important;
background-color: white !important;
border-width: 2px !important;
width: 2.5rem;
Expand Down

0 comments on commit b989875

Please sign in to comment.