Skip to content

Commit a41471d

Browse files
author
Predrag
authored
Change dimensions in table (#14)
1 parent f420dd9 commit a41471d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/common/table/TableRowCell.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22

33
export default function TableRowCell({ children }) {
44
return (
5-
<div className="py-[15px] pl-6 pr-8 font-normal text-lg text-midnight-800 leading-none">
5+
<div className="py-[15px] pl-6 pr-6 md:pr-8 font-normal text-lg text-midnight-800 leading-none">
66
{children}
77
</div>
88
);

src/components/community-stats/SdvInNumbersSection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function SdvInNumbersSection({ data }) {
2525
useEffect(() => {
2626
setTableColDimensions(
2727
isMobile
28-
? "minmax(199px, 199px) minmax(130px, 488px)"
28+
? "minmax(192px, 199px) minmax(110px, 488px)"
2929
: "minmax(199px, 199px) minmax(130px, 488px) minmax(136px, 488px)"
3030
);
3131
}, [isMobile]);

0 commit comments

Comments
 (0)