fix: dots icons color and dnd border radius fixed

This commit is contained in:
2025-09-18 19:46:59 +04:00
parent 0805a86335
commit 053c1da5db
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
.overlay { .overlay {
cursor: grabbing; cursor: grabbing;
border-radius: 10px; border-radius: var(--mantine-radius-lg);
@media (max-width: 48em) { @media (max-width: 48em) {
@mixin dark { @mixin dark {

View File

@ -11,7 +11,9 @@ const ThemeIcon: FC<Props> = props => {
return ( return (
<Center> <Center>
<MantineThemeIcon <MantineThemeIcon
variant={"default"}
bg={"transparent"} bg={"transparent"}
bd={0}
{...props}> {...props}>
{props.children} {props.children}
</MantineThemeIcon> </MantineThemeIcon>