Skip to content

Commit

Permalink
fix: Fix Notification title word break (ElemeFE#15008)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun authored and ziyoung committed Apr 17, 2019
1 parent 993e9a1 commit f02a849
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/theme-chalk/src/common/var.scss
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,8 @@ $--notification-shadow: $--box-shadow-light !default;
$--notification-border-color: $--border-color-lighter !default;
$--notification-icon-size: 24px !default;
$--notification-close-font-size: $--message-close-size !default;
$--notification-group-margin: 13px !default;
$--notification-group-margin-left: 13px !default;
$--notification-group-margin-right: 8px !default;
$--notification-font-size: $--font-size-base !default;
$--notification-color: $--color-text-regular !default;
$--notification-title-font-size: 16px !default;
Expand Down
3 changes: 2 additions & 1 deletion packages/theme-chalk/src/notification.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
}

@include e(group) {
margin-left: $--notification-group-margin;
margin-left: $--notification-group-margin-left;
margin-right: $--notification-group-margin-right;
}

@include e(title) {
Expand Down

0 comments on commit f02a849

Please sign in to comment.