fix: add margin between button (#62)

* fix: add margin between button

* chore: bump margin one size up
This commit is contained in:
leangseu-edx
2022-02-15 11:33:24 -05:00
committed by GitHub
parent 6b94ba4c5c
commit 664368fe17
2 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ exports[`ReviewActions component component snapshot: do not show rubric 1`] = `
>
<Button
onClick={[MockFunction this.props.toggleShowRubric]}
variant="outline-primary"
variant="outline-primary mr-2"
>
<FormattedMessage
defaultMessage="Show Rubric"
@@ -121,7 +121,7 @@ exports[`ReviewActions component component snapshot: show rubric, no score 1`] =
>
<Button
onClick={[MockFunction this.props.toggleShowRubric]}
variant="outline-primary"
variant="outline-primary mr-2"
>
<FormattedMessage
defaultMessage="Hide Rubric"

View File

@@ -42,7 +42,7 @@ export const ReviewActions = ({
<div className="review-actions-group">
{isLoaded && (
<>
<Button variant="outline-primary" onClick={toggleShowRubric}>
<Button variant="outline-primary mr-2" onClick={toggleShowRubric}>
<FormattedMessage {...(showRubric ? messages.hideRubric : messages.showRubric)} />
</Button>
<StartGradingButton />