diff --git a/package.json b/package.json index 7ca3fae..3334925 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@giveth/ui-design-system", - "version": "1.11.12", + "version": "1.11.13", "files": [ "/lib" ], diff --git a/src/components/layout/Grid.tsx b/src/components/layout/Grid.tsx index cd1cf07..000c3e9 100644 --- a/src/components/layout/Grid.tsx +++ b/src/components/layout/Grid.tsx @@ -132,9 +132,9 @@ export const Row = styled.div` const calculateWidth = (w: any) => { if (typeof w === 'number') { - return `width: ${(100 * w) / 12}%`; + return `width: ${(100 * w) / 12}% !important`; } else if (w === 'auto') { - return 'width: auto'; + return 'width: auto !important'; } return ''; };