feat: increase status body min height (#783)
parent
acdb94de62
commit
85316d0518
|
@ -10,7 +10,7 @@ const { translation } = useTranslation(status)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="status-body" whitespace-pre-wrap break-words :class="{ 'with-action': withAction }">
|
<div class="status-body mt2" whitespace-pre-wrap break-words :class="{ 'with-action': withAction }">
|
||||||
<ContentRich
|
<ContentRich
|
||||||
v-if="status.content"
|
v-if="status.content"
|
||||||
class="line-compact"
|
class="line-compact"
|
||||||
|
@ -29,5 +29,6 @@ const { translation } = useTranslation(status)
|
||||||
<style>
|
<style>
|
||||||
.status-body.with-action p {
|
.status-body.with-action p {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
min-height: 2rem;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue