We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30ddab0 commit a55774dCopy full SHA for a55774d
2 files changed
src/components/Poll/PollActions/PollResults/PollOptionWithVotes.tsx
@@ -46,6 +46,7 @@ export const PollOptionWithVotes = ({
46
className={clsx('str-chat__poll-option', {
47
'str-chat__poll-option--has-more-votes':
48
isVotesPreview && voteCount > countVotesPreview,
49
+ 'str-chat__poll-option--has-votes': voteCount,
50
})}
51
>
52
<PollOptionWithVotesHeader option={option} optionOrderNumber={orderNumber} />
src/components/Poll/styling/PollResults.scss
@@ -82,7 +82,8 @@
82
}
83
84
85
- .str-chat__poll-option--has-more-votes {
+ .str-chat__poll-option--has-more-votes,
86
+ .str-chat__poll-option--has-votes {
87
padding-bottom: 0;
88
89
0 commit comments