Skip to content
Snippets Groups Projects
Commit d16f46bb authored by Yoan VALLET's avatar Yoan VALLET
Browse files

feat: add style for selected feedback type

parent 5873a2f3
No related branches found
No related tags found
2 merge requests!61Dev,!59Features/feaadbacks form
...@@ -19,6 +19,8 @@ const IconButtonBase = withStyles({ ...@@ -19,6 +19,8 @@ const IconButtonBase = withStyles({
const SelectedIconButtonBase = withStyles({ const SelectedIconButtonBase = withStyles({
root: { root: {
border: '1px solid var(--multiColor)', border: '1px solid var(--multiColor)',
background: 'linear-gradient(180deg, #323339 0%, #25262B 100%)',
boxShadow: '0px 4px 16px rgba(0, 0, 0, 0.55)',
}, },
})(IconButtonBase) })(IconButtonBase)
......
...@@ -71,7 +71,7 @@ const FeedbackModal: React.FC<FeedbackModalProps> = ({ ...@@ -71,7 +71,7 @@ const FeedbackModal: React.FC<FeedbackModalProps> = ({
<div <div
className={ className={
selected selected
? 'fb-selector-item-label text-10-bold' ? 'fb-selector-item-selectedlabel text-10-bold'
: 'fb-selector-item-label text-10-normal' : 'fb-selector-item-label text-10-normal'
} }
> >
......
...@@ -30,6 +30,9 @@ ...@@ -30,6 +30,9 @@
.fb-selector-item-label { .fb-selector-item-label {
color: $text-bright; color: $text-bright;
} }
.fb-selector-item-selectedlabel {
color: $white;
}
} }
} }
.fb-form{ .fb-form{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment