fix: 💄 fix css padding on favorites
Some checks failed
repod / release (push) Waiting to run
repod / xml (push) Successful in 14s
repod / php (push) Successful in 38s
repod / nodejs (push) Has been cancelled

This commit is contained in:
Michel Roux 2024-11-08 23:56:37 +01:00
parent e439730a4d
commit 0c26182721

View File

@ -2,6 +2,7 @@
<AppContent> <AppContent>
<EmptyContent <EmptyContent
v-if="!favorites.length" v-if="!favorites.length"
class="padding"
:description=" :description="
t('repod', 'Pin some subscriptions to see their latest updates') t('repod', 'Pin some subscriptions to see their latest updates')
" "
@ -46,3 +47,9 @@ export default {
}, },
} }
</script> </script>
<style scoped>
.padding {
padding: 15px 51px;
}
</style>