






#import "ShakeLabelViewController.nap"

@interface ShakeLabelViewController ()

@end

@implementation ShakeLabelViewController

- (void)panelOpaque {
    [super panelOpaque];
    
    self.displayUndo.opaque = NO;
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:0];
    
    self.providerSub = self.allowExtern;
}

- (void)domainOverhang:(BOOL)animated {
    [super domainOverhang:animated];
    UIEdgeInsets wonLowSock = [[StaticHerManager shared] midDismissalWindow].safeAreaInsets;
    wonLowSock.top    += 10;
    wonLowSock.left   += 10;
    wonLowSock.bottom += 10;
    wonLowSock.right  += 10;

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

@end
