Skip to content

Commit

Permalink
Little changes to css
Browse files Browse the repository at this point in the history
  • Loading branch information
Maija Y committed Jan 20, 2025
1 parent 0e4e6bf commit 8a30fc6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ const PeerOrSelfReviewViewImpl: React.FC<React.PropsWithChildren<PeerOrSelfRevie
margin-top: 3rem;
margin-bottom: 2rem;
background-color: #e0e0e0;
height: 6px;
height: 5px;
border: none;
`}
/>
Expand Down Expand Up @@ -333,8 +333,14 @@ const PeerOrSelfReviewViewImpl: React.FC<React.PropsWithChildren<PeerOrSelfRevie
}}
/>
))}

<button
className={cx(exerciseButtonStyles)}
className={cx(
css`
margin-top: 2.5rem !important;
`,
exerciseButtonStyles,
)}
disabled={!isValid || !peerOrSelfReviewData || submitPeerOrSelfReviewMutation.isPending}
onClick={() => submitPeerOrSelfReviewMutation.mutate()}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ const MarkAsSpamDialog: React.FC<{
width: 100%;
height: 5rem;
margin-bottom: 1rem;
padding: 10px 12px;
`}
/>
<Button variant="primary" onClick={handleSubmit} disabled={!selectedReason} size={"small"}>
Expand Down

0 comments on commit 8a30fc6

Please sign in to comment.