diff --git a/SodaLive/Resources/Assets.xcassets/splash/splash_bg.imageset/Contents.json b/SodaLive/Resources/Assets.xcassets/splash/splash_bg.imageset/Contents.json deleted file mode 100644 index 2aa81ecf..00000000 --- a/SodaLive/Resources/Assets.xcassets/splash/splash_bg.imageset/Contents.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "splash_bg.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/SodaLive/Resources/Assets.xcassets/splash/splash_bg.imageset/splash_bg.png b/SodaLive/Resources/Assets.xcassets/splash/splash_bg.imageset/splash_bg.png deleted file mode 100644 index f62a78c5..00000000 Binary files a/SodaLive/Resources/Assets.xcassets/splash/splash_bg.imageset/splash_bg.png and /dev/null differ diff --git a/SodaLive/Resources/Assets.xcassets/splash/splash_text_logo.imageset/splash_text_logo.png b/SodaLive/Resources/Assets.xcassets/splash/splash_text_logo.imageset/splash_text_logo.png index 47d2b6bd..8e311c9a 100644 Binary files a/SodaLive/Resources/Assets.xcassets/splash/splash_text_logo.imageset/splash_text_logo.png and b/SodaLive/Resources/Assets.xcassets/splash/splash_text_logo.imageset/splash_text_logo.png differ diff --git a/SodaLive/Sources/Splash/SplashView.swift b/SodaLive/Sources/Splash/SplashView.swift index 312db065..2dedcd68 100644 --- a/SodaLive/Sources/Splash/SplashView.swift +++ b/SodaLive/Sources/Splash/SplashView.swift @@ -20,15 +20,14 @@ struct SplashView: View { Color.black .ignoresSafeArea() - VStack(spacing: 0) { + VStack(spacing: 8) { Spacer() - Text(I18n.Splash.tagline) - .appFont(size: 23, weight: .bold) - .foregroundColor(.white) - Image("splash_text_logo") - .padding(.top, 10) + + Text(I18n.Splash.tagline) + .appFont(.heading4) + .foregroundColor(.white) Spacer() }