mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
use btn-block for buttons
This commit is contained in:
parent
d1cbd6a5b4
commit
b94c37d21f
2 changed files with 3 additions and 0 deletions
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue