fix(dial-in) Make text selectable on Dial In page

This commit is contained in:
robertpin
2023-04-18 11:49:35 +03:00
committed by Дамян Минков
parent 646c58f7d1
commit a9863e65c3
2 changed files with 9 additions and 1 deletions

View File

@@ -57,6 +57,10 @@
line-height: 24px;
border-collapse: collapse;
* {
user-select: text;
}
thead {
text-align: left;
}

View File

@@ -31,7 +31,11 @@ const useStyles = makeStyles()((theme: Theme) => {
textAlign: 'center',
display: 'flex',
flexDirection: 'column',
borderRadius: 6
borderRadius: 6,
'& *': {
userSelect: 'text'
}
},
confNameLabel: {
...withPixelLineHeight(theme.typography.heading6),