poprawki w klomponentach, dodanie dyrektyw nginx
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jakub K
2023-11-21 21:54:18 +01:00
parent c65b809590
commit aa13593235
4 changed files with 21 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ const NavBar = () => {
{currentLinks.map((nav, index) => (
<li
key={nav.id}
className={`font-popins font-semibold cursor-pointer xs:text-[18px] sm:text-[14px] text-[10px] ${index === linki.length - 1 ? 'mr-7' : 'sm:mr-7 mr-10'} text-slate-900 hover:text-sky-600`}
className={`font-popins font-semibold cursor-pointer xs:text-[18px] sm:text-[14px] lg:text-[18px] text-[10px] ${index === linki.length - 1 ? 'mr-7' : 'sm:mr-7 mr-10'} text-slate-900 hover:text-sky-600`}
>
<Link to={`/${nav.name}`}>{nav.title}</Link>
</li>
@@ -37,7 +37,7 @@ const NavBar = () => {
<img
src={search}
alt="menu"
className='w-5 h-5 object-contain ml-10 hidden sm:block'
className='w-5 h-5 object-contain ml-6 hidden sm:block'
onClick={() => setToggleSearch((prev) => !prev)}/>
<div className='sm:hidden flex flex-1 justify-end items-center'>
<img