search bar & sidebar paddings/

This commit is contained in:
Flatlogic Bot 2025-03-08 14:21:39 +00:00
parent b428024457
commit a159eedbd4
3 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ const AsideMenuItem = ({ item, isDropdownList = false }: Props) => {
].join(' ');
return (
<li className={'px-3 py-1.5'}>
<li className={'px-2 py-1'}>
{item.withDevider && <hr className={`${borders} mb-3`} />}
{item.href && (
<Link href={item.href} target={item.target} className={componentClass}>

View File

@ -34,10 +34,10 @@ export default function AsideMenuLayer({
return (
<aside
id='asideMenu'
className={`${className} zzz lg:py-2 lg:pl-2 w-60 fixed flex z-40 top-0 h-screen transition-position overflow-hidden`}
className={`${className} zzz lg:py-1 lg:pl-1 w-60 fixed flex z-40 top-0 h-screen transition-all overflow-hidden`}
>
<div
className={`flex-1 flex flex-col overflow-hidden dark:bg-dark-900 ${asideStyle}`}
className={`flex-1 flex flex-col overflow-hidden bg-gray-200 dark:bg-dark-900 ${asideStyle}`}
>
<div
className={`flex flex-row h-14 items-center justify-between ${asideBrandStyle}`}

View File

@ -36,7 +36,7 @@ const Search = () => {
id='search'
name='search'
validate={validateSearch}
placeholder='Search'
placeholder='Search app...'
className={` ${corners} dark:bg-dark-900 ${cardsStyle} dark:border-dark-700 p-2 relative ml-2 w-full dark:placeholder-dark-600 ${focusRing} shadow-none`}
/>
{errors.search && touched.search && values.search.length < 2 ? (