logo small and fix size button

This commit is contained in:
hamid zarghami
2026-01-04 16:50:18 +03:30
parent 4413890912
commit b7c3ce916f
5 changed files with 4 additions and 17 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

-13
View File
@@ -1,13 +0,0 @@
<svg width="39" height="54" viewBox="0 0 39 54" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.1559 34.8412C31.1559 34.8412 24.6651 41.094 19.2416 46.3804V53.5924C18.6935 54.0179 38.4905 34.8845 38.4905 34.8845L19.2416 14.6909V22.3573L31.1559 34.8412Z" fill="#1D1D1B"/>
<path d="M19.1479 39.0818L0 18.643L0.237992 18.405L19.3931 38.8583L19.1479 39.0818Z" fill="#1D1D1B"/>
<path d="M19.1407 37.1635L1.75977 18.6719L1.99776 18.4412L19.3787 36.9399L19.1407 37.1635Z" fill="#1D1D1B"/>
<path d="M19.1334 35.2523L3.52661 18.708L3.7574 18.47L19.3786 35.0215L19.1334 35.2523Z" fill="#1D1D1B"/>
<path d="M19.1262 33.3337L5.28638 18.7366L5.50995 18.5059L19.3714 33.1029L19.1262 33.3337Z" fill="#1D1D1B"/>
<path d="M19.1191 31.4155L7.05347 18.7729L7.26982 18.5349L19.3571 31.1848L19.1191 31.4155Z" fill="#1D1D1B"/>
<path d="M0.375071 18.7368L0.144287 18.4988L19.1407 0L19.3715 0.237996L0.375071 18.7368Z" fill="#1D1D1B"/>
<path d="M2.15645 18.7442L1.91846 18.5134L19.1263 1.73828L19.3571 1.97628L2.15645 18.7442Z" fill="#1D1D1B"/>
<path d="M3.93049 18.7587L3.69971 18.5279L19.1117 3.48364L19.3425 3.71443L3.93049 18.7587Z" fill="#1D1D1B"/>
<path d="M5.71187 18.7658L5.47388 18.5422L19.0973 5.22168L19.3281 5.45968L5.71187 18.7658Z" fill="#1D1D1B"/>
<path d="M7.49326 18.7799L7.24805 18.5564L19.0901 6.95947L19.3137 7.19747L7.49326 18.7799Z" fill="#1D1D1B"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

+1 -1
View File
@@ -1,6 +1,6 @@
import { type FC } from 'react' import { type FC } from 'react'
import LogoImage from '../../assets/images/logo.png' import LogoImage from '../../assets/images/logo.png'
import LogoSmallImage from '../../assets/images/logo-small.svg' import LogoSmallImage from '../../assets/images/logo-small.png'
import { useAuthStore } from './store/AuthStore' import { useAuthStore } from './store/AuthStore'
import LoginStep1 from './components/LoginStep1' import LoginStep1 from './components/LoginStep1'
import LoginStep2 from './components/LoginStep2' import LoginStep2 from './components/LoginStep2'
+2 -2
View File
@@ -71,7 +71,7 @@ const CategoryForm: FC<Props> = ({
<Button <Button
type="button" type="button"
onClick={() => setIsIconModalOpen(true)} onClick={() => setIsIconModalOpen(true)}
className="w-full h-10 lg:h-12 flex items-center justify-center gap-2 text-xs lg:text-sm" className="w-full max-h-10 lg:h-12 flex items-center justify-center gap-2 text-xs lg:text-sm"
> >
<Image size={18} color="#fff" className="lg:w-5 lg:h-5" /> <Image size={18} color="#fff" className="lg:w-5 lg:h-5" />
<span>انتخاب آیکون</span> <span>انتخاب آیکون</span>
@@ -124,7 +124,7 @@ const CategoryForm: FC<Props> = ({
<Button <Button
onClick={() => formik.handleSubmit()} onClick={() => formik.handleSubmit()}
className="w-full h-10 lg:h-auto text-xs lg:text-sm" className="w-full min-h-10 lg:h-auto text-xs lg:text-sm"
isloading={isSubmitting} isloading={isSubmitting}
> >
<Add color='#fff' size={18} className="ml-2 lg:w-5 lg:h-5" /> <Add color='#fff' size={18} className="ml-2 lg:w-5 lg:h-5" />
+1 -1
View File
@@ -1,6 +1,6 @@
import { type FC, useEffect } from 'react' import { type FC, useEffect } from 'react'
import LogoImage from '../assets/images/logo.png' import LogoImage from '../assets/images/logo.png'
import LogoSmall from '../assets/images/logo-small.svg' import LogoSmall from '../assets/images/logo-small.png'
import { useTranslation } from 'react-i18next' import { useTranslation } from 'react-i18next'
import { DocumentText, Home2, Logout, NotificationStatus, People, Setting2, TicketDiscount, Calendar, Security, Card, SecurityUser, TruckFast, Element3, Star1, NotificationBing, SmsEdit } from 'iconsax-react' import { DocumentText, Home2, Logout, NotificationStatus, People, Setting2, TicketDiscount, Calendar, Security, Card, SecurityUser, TruckFast, Element3, Star1, NotificationBing, SmsEdit } from 'iconsax-react'
import SideBarItem from './SideBarItem' import SideBarItem from './SideBarItem'