fix responsive all pages & change style page list blog and blog item & add date picker

This commit is contained in:
Ehsan
2024-08-23 18:57:28 +03:30
parent c62fb78f8c
commit 9701547d1f
35 changed files with 19276 additions and 225 deletions
+4 -3
View File
@@ -5,13 +5,14 @@ import Item from './Item'
function RelatedContent({ data }) {
return (
<div className='p-[16px] bg-[#FFF] rounded-[8px] shadow-[0px_1px_24.8px_0px_rgba(204,_204,_204,_0.18)]'>
<div className='p-[12px] w-full lg:w-fit md:p-[14px] lg:p-[16px] bg-[#FFF] rounded-[8px] shadow-[0px_1px_24.8px_0px_rgba(204,_204,_204,_0.18)]'>
<AnimationTextHead name='fade-up' text='مطالب مرتبط'>
<UnderlineLG />
</AnimationTextHead>
<ul className='flex w-fit flex-col justify-start items-start'>
{data.map(item => (
<ul className='flex w-full lg:w-fit flex-col justify-start items-start'>
{data.map((item, idx) => (
<Item
idx={idx}
data={item}
key={item.id}
/>