feat: radius for inputs and buttons, shadow changes

This commit is contained in:
2025-07-18 10:38:36 +04:00
parent 39b4d36a82
commit e033938a03
10 changed files with 60 additions and 32 deletions

View File

@ -1,4 +1,5 @@
import { Center, Divider, Image, Stack, Title } from "@mantine/core";
import { myColor } from "@/theme";
type Props = {
title?: string;
@ -20,24 +21,18 @@ const Logo = ({ title }: Props) => {
mt={"md"}>
LogiDex
</Title>
<Title
ta={"center"}
order={5}
mt={"sm"}
style={{ color: "#4AAAC7" }}>
Fulfillment & Delivery
</Title>
{title && (
<Divider
w={"100%"}
mt={"md"}
my={"lg"}
/>
)}
{title && (
<Center>
<Title
order={4}
my={"md"}>
mb={"lg"}
style={{ color: myColor[6] }}>
{title}
</Title>
</Center>