chore(style): use spacer between button and headline in empty state
This commit is contained in:
parent
744f613df4
commit
4ea287c17f
|
@ -3,6 +3,7 @@ import { useI18n } from 'vue-i18n'
|
||||||
|
|
||||||
import Button from '~/components/ui/Button.vue'
|
import Button from '~/components/ui/Button.vue'
|
||||||
import Alert from '~/components/ui/Alert.vue'
|
import Alert from '~/components/ui/Alert.vue'
|
||||||
|
import Spacer from '~/components/ui/Spacer.vue'
|
||||||
|
|
||||||
interface Events {
|
interface Events {
|
||||||
(e: 'refresh'): void
|
(e: 'refresh'): void
|
||||||
|
@ -32,6 +33,7 @@ withDefaults(defineProps<Props>(), {
|
||||||
</h4>
|
</h4>
|
||||||
<div class="inline center aligned text">
|
<div class="inline center aligned text">
|
||||||
<slot />
|
<slot />
|
||||||
|
<Spacer :size="16"/>
|
||||||
<Button
|
<Button
|
||||||
primary
|
primary
|
||||||
v-if="refresh"
|
v-if="refresh"
|
||||||
|
|
Loading…
Reference in New Issue