fix: add adaptive to article

This commit is contained in:
2025-07-07 15:24:13 +03:00
parent 40e010bafd
commit f20785993a
13 changed files with 326 additions and 43 deletions

View File

@@ -13,7 +13,7 @@ function Sidebar({
warranties,
}: SidebarProps) {
return (
<div className={s.Sidebar}>
<aside className={s.Sidebar}>
<div className={s.Estimation}>
<h4 className={s.Title}>Срок выполнения:</h4>
<p className={s.Estimate}>от {estimate} дней</p>
@@ -49,7 +49,7 @@ function Sidebar({
</ul>
</div>
)}
</div>
</aside>
);
}