mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
feat: style page 3
This commit is contained in:
parent
5bc48076a2
commit
1534fd1674
@ -211,17 +211,15 @@ export const FeedbackWrapper = ({ seedData }) => {
|
|||||||
Finally, would you mind telling us a little about yourself?
|
Finally, would you mind telling us a little about yourself?
|
||||||
What kind of customer are you?
|
What kind of customer are you?
|
||||||
</span>
|
</span>
|
||||||
<div>
|
<div className={styles['customer-type-inputs']}>
|
||||||
{[
|
{[
|
||||||
['an', 'open source', 'opensource'],
|
|
||||||
['a', 'paying', 'paying'],
|
['a', 'paying', 'paying'],
|
||||||
|
['an', 'open source', 'opensource'],
|
||||||
].map(([article, customerType, key]) => (
|
].map(([article, customerType, key]) => (
|
||||||
<span key={`input-group-${key}`}>
|
<span key={`input-group-${key}`}>
|
||||||
<input
|
<input
|
||||||
className={join(
|
|
||||||
styles['user-satisfaction-score-input'],
|
|
||||||
)}
|
|
||||||
id={`customer-type-${key}`}
|
id={`customer-type-${key}`}
|
||||||
|
className={styles['customer-type-input']}
|
||||||
name="customer-type"
|
name="customer-type"
|
||||||
type="radio"
|
type="radio"
|
||||||
value={key}
|
value={key}
|
||||||
@ -233,9 +231,7 @@ export const FeedbackWrapper = ({ seedData }) => {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<label
|
<label
|
||||||
className={
|
className={styles['customer-type-label']}
|
||||||
styles['user-satisfaction-score-label']
|
|
||||||
}
|
|
||||||
htmlFor={`customer-type-${key}`}
|
htmlFor={`customer-type-${key}`}
|
||||||
>
|
>
|
||||||
I'm {article} {customerType} customer
|
I'm {article} {customerType} customer
|
||||||
|
@ -133,3 +133,11 @@ button.close-button {
|
|||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.customer-type-inputs {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: var(--ifm-spacing-horizontal);
|
||||||
|
accent-color: var(--ifm-color-primary);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user