style slack tv, fixes #206

This commit is contained in:
Ryan Nystrom
2017-07-31 08:29:51 -06:00
parent 66aa656a1a
commit 25c6dfaf50
3 changed files with 5 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ NSString * const SLKTextInputbarDidMoveNotification = @"SLKTextInputbarDidMove
_textView.scrollIndicatorInsets = UIEdgeInsetsMake(0.0, -1.0, 0.0, 1.0);
_textView.textContainerInset = UIEdgeInsetsMake(8.0, 4.0, 8.0, 0.0);
_textView.layer.cornerRadius = 5.0;
_textView.layer.borderWidth = 0.5;
_textView.layer.borderWidth = 1 / [UIScreen mainScreen].scale;
_textView.layer.borderColor = [UIColor colorWithRed:200.0/255.0 green:200.0/255.0 blue:205.0/255.0 alpha:1.0].CGColor;
}
return _textView;