Browse Source

fix: List.Item.Meta width overflow (#24992)

* fix: List.Item.Meta width overflow

* refactor: not hide overflow on list-item-content
pull/25017/head
07akioni 5 years ago
committed by GitHub
parent
commit
298d903630
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      components/list/style/index.less

9
components/list/style/index.less

@ -55,22 +55,21 @@
align-items: center;
justify-content: space-between;
padding: @list-item-padding;
&-content {
color: @text-color;
}
color: @text-color;
&-meta {
display: flex;
flex: 1;
align-items: flex-start;
font-size: 0;
max-width: 100%;
&-avatar {
margin-right: @list-item-meta-avatar-margin-right;
}
&-content {
flex: 1 0;
width: 0;
color: @text-color;
}
&-title {
margin-bottom: 4px;

Loading…
Cancel
Save