Skip to content

Commit

Permalink
Merge pull request #117 from fga-eps-mds/236-mudar-botao-encaminhar-r…
Browse files Browse the repository at this point in the history
…egistro

236 mudar botao encaminhar registro
  • Loading branch information
jpaulohe4rt authored Nov 16, 2021
2 parents c74b404 + e95a0d8 commit 8dacb8d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 66 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/devel_oraculo-frontend.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
prerelease: false
files: |
fga-eps-mds-2021_1-Oraculo-FrontEnd-${{ steps.date.outputs.date }}.json
- name: Pushes sonar file
uses: dmnemec/copy_file_to_another_repo_action@80732d64341473fa7165a3b2b6c7b0ee164193f8
env:
Expand Down
10 changes: 5 additions & 5 deletions src/Pages/ViewRecord/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,15 +375,15 @@ const ViewRecord = () => {
<FaUserCircle />
<p>{userName === "" ? "Policia Federal (mock)" : userName}</p>
</div>
<span>Departamento:</span>
<button onClick={handleForward} className="forwardIcon">
<p>Encaminhar para</p>
<FaTelegramPlane />
</button>

<DropDownButton
onChangeOpt={(event) => setSector(event.target.value)}
/>
<div className="forwardIcon">
<p onClick={handleForward}>Encaminhar</p>
<FaTelegramPlane />
</div>

<span>Tags:</span>
<div className="tagsTest">
<TagsList id={id} />
Expand Down
12 changes: 8 additions & 4 deletions src/Pages/ViewRecord/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,22 @@ const StyledDivInfoProcess = styled.div`
}
.forwardIcon {
align-items: end;
background: none;
border: none;
display: flex;
align-items: center;
justify-content: flex-end;
margin-top: 1rem;
cursor: pointer;
p {
text-decoration: none;
color: white;
font-size: ${fonts.sizeLg};
font-size: ${fonts.sizeXlg};
margin-bottom: 0;
}
svg {
margin: 0 1rem;
font-size: ${fonts.sizeXlg};
margin-left: 1rem;
color: white;
}
}
Expand Down

0 comments on commit 8dacb8d

Please sign in to comment.