4f920e98fc3cceaf99c70379cb5ea5e6cab984bb
CSS grid tracks named '1fr' have an implicit 'min-width: auto' that defers to the child's intrinsic minimum content size. With wide tables inside those tracks (Ürünler, Hastalar, dashboard recent jobs) that minimum was the full table width, so the column blew past its share of the row and the table's overflow-x-auto wrapper never got a chance to do its job — the whole page scrolled horizontally instead. Switched the offending tracks to 'minmax(0,1fr)' which lets them collapse to zero and lets the table primitive's own overflow handle horizontal scroll inside the cell as designed. Touched: - /products grid-cols-[1fr_360px] → [minmax(0,1fr)_360px] - /patients grid-cols-[1fr_360px] → [minmax(0,1fr)_360px] - /dashboard grid-cols-[2fr_1fr] → [minmax(0,2fr)_minmax(0,1fr)] Small inline forms ([1fr_auto], [1fr_100px]) were left as-is — they don't host tables.
Description
No description provided
Languages
TypeScript
99.2%
CSS
0.7%