






#import "AuthorsSawViewController.h"

@interface AuthorsSawViewController ()

@end

@implementation AuthorsSawViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.rateAllView.opaque = NO;
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:0];
    
    self.membersPink = self.mixFatOffer;
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    UIEdgeInsets hostingZip = [[TeaspoonsManager shared] ourHostPhaseWindow].safeAreaInsets;
    hostingZip.top    += 10;
    hostingZip.left   += 10;
    hostingZip.bottom += 10;
    hostingZip.right  += 10;

    [self.view mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(0);
    }];
    
    [self.rateAllView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.edges.mas_equalTo(0);
    }];
}

@end
