From 7fd1862ab029eea3aaae4a743d26d3a029995bcc 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 | 2 +- src/stories/typography/Typography.tsx | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 88f93111..e40bfe59 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,7 @@ "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; + } `; } );