Client: LDAP: fix selector style

This commit is contained in:
Viktor Fomin 2024-07-16 01:37:13 +03:00
parent 3030c2ff03
commit f2a8dd9b20
2 changed files with 10 additions and 2 deletions

View File

@ -96,9 +96,17 @@ const StyledLdapPage = styled(Box)`
} }
display: grid; display: grid;
grid-gap: 12px; grid-gap: 12px;
}
.access-selector-wrapper {
width: 356px;
@media ${mobile} {
width: 100%;
}
.access-selector { .access-selector {
margin-right: 0; margin-right: 0 !important;
margin-top: -4px; margin-top: -4px;
} }
} }

View File

@ -230,7 +230,7 @@ const AttributeMapping = (props) => {
{t("LdapUsersTypeInfo")} {t("LdapUsersTypeInfo")}
</Text> </Text>
</Box> </Box>
<Box widthProp="356px"> <Box className="access-selector-wrapper">
<AccessSelector <AccessSelector
className="add-manually-access" className="add-manually-access"
t={t} t={t}