increase paddings & margins

This commit is contained in:
Flatlogic Bot 2025-03-18 16:10:52 +00:00
parent e4fc0f6465
commit 6dcdec6fd3
4 changed files with 8 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/ node_modules/
*/node_modules/ */node_modules/
*/build/ */build/
**/node_modules/
**/build/
.DS_Store
.env

View File

@ -0,0 +1 @@
{}

View File

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

View File

@ -65,7 +65,7 @@ export default function AsideMenuLayer({
return ( return (
<aside <aside
id='asideMenu' 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-4 lg:pl-4 w-60 fixed flex z-40 top-0 h-screen transition-position overflow-hidden`}
> >
<div <div
className={`flex-1 flex flex-col overflow-hidden dark:bg-dark-900 ${asideStyle}`} className={`flex-1 flex flex-col overflow-hidden dark:bg-dark-900 ${asideStyle}`}