Remove bottom margin from announcement

This commit is contained in:
fabianmakila 2022-03-23 19:03:44 +02:00 committed by MiniDigger | Martin
parent 03afe4c4d6
commit 3f4699655c

View File

@ -7,7 +7,7 @@ const { announcement } = toRefs(props);
</script>
<template>
<div :style="'background-color:' + announcement.color" class="mb-2 p-2 text-center">
<div :style="'background-color:' + announcement.color" class="p-2 text-center">
{{ announcement.text }}
</div>
</template>