fix: remove unneeded maxWidth

correct text alignment for enter key settings for smaller screens
pull/3131/head
yougotwill 10 months ago
parent 4b0b813362
commit f0836de707

@ -53,15 +53,13 @@ const StyledInfo = styled.div`
min-width: 0;
`;
const StyledName = styled.span<{ maxWidth?: string }>`
const StyledName = styled.span`
font-weight: bold;
margin-inline-start: var(--margins-md);
margin-inline-end: var(--margins-md);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
${props => props.maxWidth && `max-width: ${props.maxWidth};`}
`;
const StyledCheckContainer = styled.div`

@ -57,6 +57,7 @@ export const SessionRadioGroup = (props: Props) => {
}}
beforeMargins={'0 var(--margins-sm) 0 0 '}
radioPosition={radioPosition}
style={{ textAlign: 'start' }}
/>
);
})}

Loading…
Cancel
Save