Skip to content

Commit

Permalink
modify ui padding
Browse files Browse the repository at this point in the history
  • Loading branch information
choykarl committed Nov 29, 2023
1 parent 6ff9344 commit 356c65b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -965,8 +965,9 @@ - (NSView *)buildSynonymsAndAntonymsView:(NSString *)title parts:(NSArray<EZTran
}];

[wrapView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(rtnView.mas_bottom).offset(kVerticalPadding_8);
*height += kVerticalPadding_8;
CGFloat topOffset = 5;
make.top.equalTo(rtnView.mas_bottom).offset(topOffset);
*height += topOffset;
make.left.equalTo(partLabel.mas_right);
make.right.equalTo(self);
}];
Expand Down

0 comments on commit 356c65b

Please sign in to comment.