feat: add TextBlock component

This commit is contained in:
Sebin Nyshkim 2022-09-26 17:25:16 +02:00
parent 596ab3af34
commit d35f6f9184

View file

@ -0,0 +1,12 @@
<template>
<div class="textblock">
<slot></slot>
</div>
</template>
<style lang="scss">
.textblock {
max-width: var(--container-width-text);
margin: var(--content-spacing);
}
</style>