Commit 5670b455 authored by Paul Kaplan's avatar Paul Kaplan

Add modifier class to fix button margin

parent f796093e
...@@ -84,6 +84,12 @@ row to appear to contain overflow. */ ...@@ -84,6 +84,12 @@ row to appear to contain overflow. */
margin-bottom: .9375rem; margin-bottom: .9375rem;
} }
/* For action button row where left/right margin is handled by parent element */
.action-buttons.action-buttons-no-inset {
margin-left: 0;
margin-right: 0;
}
.action-button { .action-button {
margin: 0 0 0 .54625rem; margin: 0 0 0 .54625rem;
border-radius: .25rem; border-radius: .25rem;
......
...@@ -45,7 +45,7 @@ class FormStep extends React.Component { ...@@ -45,7 +45,7 @@ class FormStep extends React.Component {
onValidSubmit={onNext} onValidSubmit={onNext}
> >
{children} {children}
<FlexRow className="action-buttons"> <FlexRow className={classNames('action-buttons', 'action-buttons-no-inset')}>
<Button <Button
className={classNames( className={classNames(
'action-button', 'action-button',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment