Skip to content

Commit

Permalink
fix: fixed the width issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshaybagai52 committed Mar 13, 2024
1 parent be15ab6 commit b34acd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const SidebarLayout = ({ children }: { children: React.ReactNode }) => {
const pathWtihoutFragment = extractPathWithoutFragment(router.asPath);
return (
<div className='max-w-[1400px] mx-auto flex flex-col items-center'>
<section>
<section className='w-full'>
<div className='bg-primary w-full h-12 mt-[4.5rem] z-150 flex relative flex-col justify-between items-center lg:hidden'>
<div
className='z-[150] flex w-full bg-primary justify-between items-center mt-2'
Expand Down
2 changes: 1 addition & 1 deletion pages/resources/[slug].page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default function ResourcePageComponent({ data }: { data: DataProps }) {
/>
{filteredArticles &&
filteredArticles.map((item: ResourcesProps, index: number) => (
<div key={index} className='bg-white p-4 mb-4'>
<div key={index} className='bg-white p-3'>
<a
href={item.url}
className='text-xl text-blue-500 underline mb-2'
Expand Down

0 comments on commit b34acd0

Please sign in to comment.