From 0e95be960c9744882c68325b12065f9b1e535608 Mon Sep 17 00:00:00 2001 From: Iacopo Leardini Date: Tue, 24 Oct 2023 11:48:55 +0200 Subject: [PATCH] feat(Text): style for ul li --- package-lock.json | 4 ++-- src/stories/typography/Typography.tsx | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 45e4097e..e3858405 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@appquality/appquality-design-system", - "version": "1.0.41", + "version": "1.0.42", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@appquality/appquality-design-system", - "version": "1.0.41", + "version": "1.0.42", "license": "ISC", "dependencies": { "@appquality/mobiscroll": "^5.10.1", diff --git a/src/stories/typography/Typography.tsx b/src/stories/typography/Typography.tsx index c09b92f3..b37d235e 100644 --- a/src/stories/typography/Typography.tsx +++ b/src/stories/typography/Typography.tsx @@ -96,6 +96,12 @@ export const Text = styled.div( }; ${small ? `line-height: 1.2` : `line-height: 1.5`}; ${small ? `font-size: .875rem` : `font-size: 1rem`}; + + ul { + list-style: disc; + padding: 1em; + margin: 1em; + } `; } );