Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Fix margin on microsurvey emojis and comment label alignments (#1075)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubjanczyk authored Jun 29, 2022
1 parent 4c2a085 commit 9a22e37
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export const EmojiButtonUI = styled('button')`
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
cursor: pointer;
font-size: 22px;
margin-left: 10px;
margin-left: 5px;
margin-right: 5px;
height: 42px;
width: 42px;
${defaultTransition};
Expand All @@ -43,10 +44,6 @@ export const EmojiButtonUI = styled('button')`
--focusRingOffset: 0px;
--focusRingRadius: 50%;
&:first-child {
margin-left: 0;
}
&:hover,
&:focus {
transform: scale(1.3);
Expand Down Expand Up @@ -112,7 +109,8 @@ export const EmojiButtonUI = styled('button')`
`

export const RateActionUI = styled(RateAction)`
margin-left: 10px !important;
margin-left: 5px !important;
margin-right: 5px !important;
&.c-RateAction {
${defaultTransition};
Expand Down Expand Up @@ -170,7 +168,8 @@ export const FeedbackFormUI = styled('form')`
export const FeedbackLabelUI = styled('label')`
color: ${getColor('charcoal.500')};
display: block;
margin-bottom: 6px;
margin-bottom: 10px;
text-align: center;
`

export const SubmitFeedbackFormButtonUI = styled(Button)`
Expand Down

0 comments on commit 9a22e37

Please sign in to comment.