1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00

feat: allow selection of text in strategies for contexts (#5071)

This commit is contained in:
Jaanus Sellin 2023-10-18 09:55:19 +03:00 committed by GitHub
parent c5914a077f
commit d6607373fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,10 @@ const StyledAccordionSummary = styled(AccordionSummary)(({ theme }) => ({
textDecoration: 'underline',
},
},
userSelect: 'auto',
'-webkit-user-select': 'auto',
'-moz-user-select': 'auto',
'-ms-user-select': 'auto',
}));
const StyledAccordionDetails = styled(AccordionDetails)(({ theme }) => ({
borderTop: `1px dashed ${theme.palette.divider}`,