fix(style) iframe

This commit is contained in:
DiamondThree
2022-07-25 00:06:13 +08:00
parent b4362dd968
commit acd6b0434e
4 changed files with 48 additions and 34 deletions

View File

@@ -61,15 +61,18 @@ const GroupContainer = styled('div')<{ isSelect?: boolean }>(
({ isSelect, theme }) => ({
background: theme.affine.palette.white,
border: '2px solid #ECF1FB',
boxShadow: isSelect
? '0px 0px 5px 5px rgba(98, 137, 255, 0.25), 0px 0px 5px 5px #E3EAFF !important'
: '#none',
padding: '15px 12px',
borderRadius: '10px',
'&:hover': {
// borderColor: 'none',
boxShadow: '0px 1px 10px rgb(152 172 189 / 60%)',
},
...(isSelect
? {
boxShadow:
'0px 0px 5px 5px rgba(98, 137, 255, 0.25), 0px 0px 5px 5px #E3EAFF',
}
: {
'&:hover': {
boxShadow: '0px 1px 10px rgb(152 172 189 / 60%)',
},
}),
})
);