add border around About web view. added padding to text div in the about page

This commit is contained in:
Grant Limberg
2016-08-09 19:03:09 -07:00
parent 91b8d6f34f
commit a7b635a980
3 changed files with 10 additions and 0 deletions

View File

@@ -17,6 +17,12 @@
- (void)viewDidLoad {
[super viewDidLoad];
[self.webView setWantsLayer:YES];
self.webView.layer.borderWidth = 1.0f;
[self.webView.layer setCornerRadius:1.0f];
self.webView.layer.masksToBounds = YES;
[self.webView.layer setBorderColor:[[NSColor darkGrayColor] CGColor]];
NSBundle *bundle = [NSBundle mainBundle];
NSURL *path = [bundle URLForResource:@"about" withExtension:@"html"];
if(path) {