Skip to content

Commit

Permalink
Unstyle fieldsets in activity report
Browse files Browse the repository at this point in the history
  • Loading branch information
jasalisbury committed Nov 2, 2020
1 parent 1b18d8a commit b32d147
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions frontend/src/pages/ActivityReport/SectionOne.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const PageOne = ({
<>
<Fieldset className="smart-hub--report-legend smart-hub--form-section" legend="General Information">
<div className="smart-hub--form-section">
<fieldset>
<Fieldset unstyled>
<legend>Was this activity for a grantee or a non-grantee?</legend>
<Radio
id="category-grantee"
Expand All @@ -72,7 +72,7 @@ const PageOne = ({
className="smart-hub--report-checkbox"
inputRef={register({ required: true })}
/>
</fieldset>
</Fieldset>
</div>
<div className="smart-hub--form-section">
<Label htmlFor="grantees">Who was this activity for?</Label>
Expand Down Expand Up @@ -106,7 +106,7 @@ const PageOne = ({
</Fieldset>
<Fieldset className="smart-hub--report-legend smart-hub--form-section" legend="Reason for Activity">
<div className="smart-hub--form-section">
<fieldset>
<Fieldset unstyled>
<legend>Who requested this activity?</legend>
<Radio
id="grantee-request"
Expand All @@ -124,7 +124,7 @@ const PageOne = ({
className="smart-hub--report-checkbox"
inputRef={register({ required: true })}
/>
</fieldset>
</Fieldset>
</div>
<div className="smart-hub--form-section">
<Label htmlFor="reason">What was the reason for this activity?</Label>
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/pages/ActivityReport/SectionThree.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const PageThree = ({
<>
<Fieldset className="smart-hub--report-legend smart-hub--form-section" legend="Methods and Logistics">
<div className="smart-hub--form-section">
<fieldset>
<Fieldset unstyled>
<legend>How was this activity conducted? (select at least one)</legend>
<Grid row gap>
<Grid col={4}>
Expand All @@ -64,17 +64,17 @@ const PageThree = ({
{renderCheckbox('activity-method', 'multi-single', 'Multi-grantee: Single Event (Cluster)')}
</Grid>
</Grid>
</fieldset>
</Fieldset>
</div>
<div className="smart-hub--form-section">
<fieldset>
<Fieldset unstyled>
<legend>
Was this activity Training or Technical Assistance?
Select both options if both Training and Technical Assistance took place.
</legend>
{renderCheckbox('activity-type', 'training', 'Training')}
{renderCheckbox('activity-type', 'technical-assistance', 'Technical Assistance')}
</fieldset>
</Fieldset>
</div>
<div className="smart-hub--form-section">
<Label htmlFor="participants">Grantee participant(s) involved</Label>
Expand Down

0 comments on commit b32d147

Please sign in to comment.