Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Fixed Hero is-halfheight className. #73

Merged
merged 1 commit into from Nov 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/layout/Hero/Hero.tsx
Expand Up @@ -21,7 +21,7 @@ export function Hero({ tag = 'section', ...props }: Hero<HTMLElement>) {
{
'is-bold': props.isBold,
'is-fullheight': props.isFullHeight,
'is-halfheight': props.isFullHeight,
'is-halfheight': props.isHalfHeight,
...combineModifiers(props, getColorModifiers, getSizeModifiers),
},
props.className,
Expand Down