0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-10 22:22:45 -05:00

fix(console): fix the image uploader style (#5285)

fix the image uploader style
This commit is contained in:
simeng-li 2024-01-25 15:21:27 +08:00 committed by GitHub
parent 94344e1423
commit afd730936d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -6,7 +6,8 @@
> * {
flex: 1;
&:last-child {
// remove the left side of the border-radius on the second column when dark mode logo uploader is active
&:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}

View file

@ -7,7 +7,7 @@ import { useTranslation } from 'react-i18next';
import ImageUploader from '@/ds-components/Uploader/ImageUploader';
import useImageMimeTypes from '@/hooks/use-image-mime-types';
import * as styles from './index.module.scss';
import * as styles from './LogoUploader.module.scss';
type Props = {
isDarkModeEnabled?: boolean;