From ab1ee241560e90684d53b6e8254662968c94ea9b Mon Sep 17 00:00:00 2001 From: Subhankar Date: Tue, 7 Dec 2021 21:46:38 +0530 Subject: [PATCH] added spacing to unordered list --- .../VerticalCombinationViews/Lists/UnOrderedListModel.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Molecules/VerticalCombinationViews/Lists/UnOrderedListModel.swift b/MVMCoreUI/Atomic/Molecules/VerticalCombinationViews/Lists/UnOrderedListModel.swift index 4013f3aa..db69eaec 100644 --- a/MVMCoreUI/Atomic/Molecules/VerticalCombinationViews/Lists/UnOrderedListModel.swift +++ b/MVMCoreUI/Atomic/Molecules/VerticalCombinationViews/Lists/UnOrderedListModel.swift @@ -36,7 +36,8 @@ import Foundation for molecule in list { models.append(MoleculeStackItemModel(with: StringAndMoleculeModel(string: bulletChar, molecule: molecule, stringColor: bulletColor))) } - super.init(molecules: models, spacing: 0) + /// changing as per confluence, as spacing between each list item is 16 + super.init(molecules: models, spacing: PaddingDefaultVerticalSpacing / 2) } public override func encode(to encoder: Encoder) throws {