From 45afb5525882fb0ac3a9af41b7c2186d33d5b1d1 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Wed, 7 Apr 2021 11:38:23 -0400 Subject: [PATCH] two column margin --- .../List/TwoColumn/ListTwoColumnCompareChanges.swift | 3 +-- .../List/TwoColumn/ListTwoColumnDropdownSelectors.swift | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnCompareChanges.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnCompareChanges.swift index 9f7895af..42284af9 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnCompareChanges.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnCompareChanges.swift @@ -20,7 +20,6 @@ //------------------------------------------------------ let containingStack: Stack - let stackSpacing: CGFloat = 5.0 //------------------------------------------------------ // MARK: - Initializers @@ -31,7 +30,7 @@ (view: rightHeadlineBodyLink, model: StackItemModel(percent: 50, verticalAlignment: .leading))], axis: .horizontal) - containingStack = Stack.createStack(with: [stackHeadline1], spacing: 0) + containingStack = Stack.createStack(with: [stackHeadline1], spacing: Padding.Component.gutterForApplicationWidth) super.init(style: style, reuseIdentifier: reuseIdentifier) } diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift index eb8fb0ea..93350a63 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/TwoColumn/ListTwoColumnDropdownSelectors.swift @@ -23,7 +23,7 @@ public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { stack = Stack.createStack(with: [(view: leftDropDown, model: StackItemModel(percent: 50, horizontalAlignment: .fill)), (view: rightDropDown, model: StackItemModel(percent: 50, horizontalAlignment: .fill))], - axis: .horizontal, spacing: 9) + axis: .horizontal, spacing: Padding.Component.gutterForApplicationWidth) super.init(style: style, reuseIdentifier: reuseIdentifier) }