diff --git a/pedi-foods/Darwin/Assets.xcassets/LaunchBackground.colorset/Contents.json b/pedi-foods/Darwin/Assets.xcassets/LaunchBackground.colorset/Contents.json deleted file mode 100644 index b7320fe..0000000 --- a/pedi-foods/Darwin/Assets.xcassets/LaunchBackground.colorset/Contents.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "colors" : [ - { - "idiom" : "universal", - "color" : { - "color-space" : "srgb", - "components" : { - "red" : "0.9529411764705882", - "green" : "0.9607843137254902", - "blue" : "0.9686274509803922", - "alpha" : "1.0000000000000000" - } - } - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/Contents.json b/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/Contents.json deleted file mode 100644 index 6df8882..0000000 --- a/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/Contents.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "images": [ - { - "idiom": "universal", - "filename": "login_light.png", - "scale": "1x" - }, - { - "idiom": "universal", - "scale": "2x" - }, - { - "idiom": "universal", - "scale": "3x" - }, - { - "idiom": "universal", - "filename": "login_dark.png", - "scale": "1x", - "appearances": [ - { - "appearance": "luminosity", - "value": "dark" - } - ] - }, - { - "idiom": "universal", - "scale": "2x", - "appearances": [ - { - "appearance": "luminosity", - "value": "dark" - } - ] - }, - { - "idiom": "universal", - "scale": "3x", - "appearances": [ - { - "appearance": "luminosity", - "value": "dark" - } - ] - } - ], - "info": { - "version": 1, - "author": "xcode" - } -} \ No newline at end of file diff --git a/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/login_dark.png b/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/login_dark.png deleted file mode 100644 index bf637d4..0000000 Binary files a/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/login_dark.png and /dev/null differ diff --git a/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/login_light.png b/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/login_light.png deleted file mode 100644 index e7c5b09..0000000 Binary files a/pedi-foods/Darwin/Assets.xcassets/login_bg.imageset/login_light.png and /dev/null differ diff --git a/pedi-foods/Sources/PediFoods/Views/Main/StoreDetailView+Components.swift b/pedi-foods/Sources/PediFoods/Views/Main/StoreDetailView+Components.swift index ffe1fb4..ecd0908 100644 --- a/pedi-foods/Sources/PediFoods/Views/Main/StoreDetailView+Components.swift +++ b/pedi-foods/Sources/PediFoods/Views/Main/StoreDetailView+Components.swift @@ -11,16 +11,14 @@ extension StoreDetailView { Rectangle() .fill(AppColors.backgroundLight) .frame(height: max(0, topSectionHeight - coverVisibleUntilY)) - .offset(y: coverVisibleUntilY - stretchAmount) + .offset(y: coverVisibleUntilY) summaryCard .padding(.horizontal, 16) .padding(.top, cardTopInset) - .offset(y: -stretchAmount) storeLogoBadge .padding(.top, cardTopInset - (storeLogoSize / 2)) - .offset(y: -stretchAmount) } .frame(height: topSectionHeight) } @@ -39,7 +37,6 @@ extension StoreDetailView { ) .frame(height: topSectionHeight) .ignoresSafeArea(.container, edges: .top) - .offset(y: -stretchAmount) .allowsHitTesting(false) VStack(spacing: 0) { @@ -69,7 +66,6 @@ extension StoreDetailView { .foregroundStyle(Color.white.opacity(0.92)) .padding(.bottom, 14) } - .offset(y: -stretchAmount) } }