docs: fix demo editor shadow (#45636)

This commit is contained in:
MadCcc 2023-11-02 19:33:00 +08:00 committed by GitHub
parent 95322eaad5
commit e6d9232777
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,11 +16,11 @@ const useStyle = createStyles(({ token, css }) => {
outline: none;
&:hover {
box-shadow: 0 0 0 1px ${colorPrimaryBorder} !important;
box-shadow: inset 0 0 0 1px ${colorPrimaryBorder} !important;
}
&:focus {
box-shadow: 0 0 0 1px ${colorPrimary} !important;
box-shadow: inset 0 0 0 1px ${colorPrimary} !important;
}
}
`,