jeremy лет назад: 5
Родитель
Сommit
1f46984b73

+ 3 - 3
RainbowPlanet/RainbowPlanet/Base/RootViewController/RootViewController.swift

@@ -36,7 +36,8 @@ class RootViewController: BaseViewController {
         
         iconImageView.snp.makeConstraints {(make) in
             make.bottom.equalTo(-43.5)
-
+            make.width.equalTo(159)
+            make.height.equalTo(83)
             make.centerX.equalToSuperview()
         }
         
@@ -79,9 +80,8 @@ class RootViewController: BaseViewController {
     lazy var imageView: UIImageView = {
         let imageView = UIImageView()
         imageView.image = kImage(name: "default_image")
+        imageView.contentMode = .scaleAspectFill
         return imageView
     }()
-    
-    
 
 }