use btn-block for buttons

This commit is contained in:
Collin M. Barrett 2019-08-02 21:04:02 -05:00
parent d1cbd6a5b4
commit b94c37d21f
2 changed files with 3 additions and 0 deletions

View file

@ -12,6 +12,7 @@ export const LinkButton = (props: Props) =>
props.href
? <Button
href={props.href}
block={true}
variant={props.variant}
title={props.title}>
{props.text}

View file

@ -16,11 +16,13 @@ const Expander = (props: RowRenderProps) =>
<div>
{props.isExpanded
? <Button
block={true}
variant={'primary'}
title={`Collapse details about ${props.row.name}.`}>
Details
</Button>
: <Button
block={true}
variant={'primary'}
title={`Learn more about ${props.row.name}.`}>
Details