@obosbbl/grunnmuren-react 3.0.7 → 3.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2515,7 +2515,7 @@ const LinkList = ({ className, children, ...restProps })=>{
|
|
|
2515
2515
|
'grid auto-rows-max gap-y-0.25', // Gaps for when the list is displayed in multiple columns
|
|
2516
2516
|
'@lg:gap-x-12 @md:gap-x-9 @sm:gap-x-4 @xl:gap-x-16', numberofLinks > 5 && [
|
|
2517
2517
|
'@xl:grid-cols-2',
|
|
2518
|
-
numberofLinks > 10 && '@4xl:grid-cols-3'
|
|
2518
|
+
(numberofLinks === 9 || numberofLinks > 10) && '@4xl:grid-cols-3'
|
|
2519
2519
|
]),
|
|
2520
2520
|
children: children
|
|
2521
2521
|
})
|