@obosbbl/grunnmuren-tailwind 0.2.0 → 0.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obosbbl/grunnmuren-tailwind",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Grunnmuren Tailwind preset",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
package/tailwind-base.cjs CHANGED
@@ -339,6 +339,8 @@ module.exports = (opts = { useLegacyFont: false }) => {
339
339
  css: {
340
340
  '--tw-prose-headings': theme('colors.black'),
341
341
  '--tw-prose-lead': theme('colors.black'),
342
+ // TODO: Increase bullet size. See design sketches
343
+ '--tw-prose-bullets': theme('colors.green.DEFAULT'),
342
344
  color: theme('colors.black'),
343
345
  maxWidth: theme('maxWidth.prose'),
344
346
  a: {
@@ -356,6 +358,10 @@ module.exports = (opts = { useLegacyFont: false }) => {
356
358
  h4: {
357
359
  fontWeight: 'bold',
358
360
  },
361
+ li: {
362
+ marginTop: '1.5em',
363
+ marginBottom: '1.5em',
364
+ },
359
365
  '[class~="lead"]': {
360
366
  fontWeight: 500,
361
367
  },