feat: justify paragraphs inside TextBlock component

This commit is contained in:
Sebin Nyshkim 2022-09-29 02:22:24 +02:00
parent 9d4f443363
commit 936f3e7057

View file

@ -5,9 +5,13 @@
</template> </template>
<style lang="scss"> <style lang="scss">
.textblock { .textblock {
max-width: var(--textblock-max-width); max-width: var(--textblock-max-width);
margin: auto; margin: auto;
padding: var(--textblock-padding); padding: var(--textblock-padding);
p {
text-align: justify;
} }
}
</style> </style>