style(notice-list): fix `margin-bottom` value
去除通知列表组件标题和内容部分多余的margin-bottom
This commit is contained in:
parent
c16be2c499
commit
aeebfc4d3d
|
|
@ -7,7 +7,7 @@
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<a-typography-paragraph
|
<a-typography-paragraph
|
||||||
@click="handleTitleClick(item)"
|
@click="handleTitleClick(item)"
|
||||||
style="width: 100%"
|
style="width: 100%; margin-bottom: 0 !important"
|
||||||
:style="{ cursor: isTitleClickable ? 'pointer' : '' }"
|
:style="{ cursor: isTitleClickable ? 'pointer' : '' }"
|
||||||
:delete="!!item.titleDelete"
|
:delete="!!item.titleDelete"
|
||||||
:ellipsis="
|
:ellipsis="
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="description" v-if="item.description">
|
<div class="description" v-if="item.description">
|
||||||
<a-typography-paragraph
|
<a-typography-paragraph
|
||||||
style="width: 100%"
|
style="width: 100%; margin-bottom: 0 !important"
|
||||||
:ellipsis="
|
:ellipsis="
|
||||||
$props.descRows > 0
|
$props.descRows > 0
|
||||||
? { rows: $props.descRows, tooltip: item.description }
|
? { rows: $props.descRows, tooltip: item.description }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue