Skip to content

Commit

Permalink
ar(fix) [DPCP-93]: Fix default 8 col grid
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloreale committed Aug 21, 2024
1 parent 10ec420 commit 9990a27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
"import": "./dist/esm/index.es.js",
"require": "./dist/cjs/index.server.cjs"
},
"./styles": "./dist/esm/style.css",
"./styles": {
"import": "./dist/esm/style.css",
"require": "./dist/cjs/style.css"
},
"./dist/tailwind.config.js": {
"import": "./dist/esm/tailwind.config.js",
"require": "./dist/cjs/tailwind.config.js"
Expand Down
2 changes: 1 addition & 1 deletion src/atoms/10_Grid/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const HGrid = function ({
{
[`
grid-cols-6
md:grid-cols-12
md:grid-cols-8
`]: coercedVariant === EGridVariant.DEFAULT,
[`
grid-cols-1
Expand Down

0 comments on commit 9990a27

Please sign in to comment.