diff --git a/src/packages/components/Informations/Texts/TextCommon/index.vue b/src/packages/components/Informations/Texts/TextCommon/index.vue index 18990c70..b2f7f4fe 100644 --- a/src/packages/components/Informations/Texts/TextCommon/index.vue +++ b/src/packages/components/Informations/Texts/TextCommon/index.vue @@ -1,27 +1,12 @@ + @@ -84,6 +68,21 @@ const click = () => { @include go('text-box') { display: flex; align-items: center; - justify-content: center; + justify-content: v-bind('textAlign'); + + .content { + color: v-bind('fontColor'); + padding: v-bind('`${paddingY}px ${paddingX}px`'); + font-size: v-bind('fontSize + "px"'); + letter-spacing: v-bind('letterSpacing + "px"'); + writing-mode: v-bind('writingMode'); + + border-style: solid; + border-width: v-bind('borderWidth + "px"'); + border-radius: v-bind('borderRadius + "px"'); + border-color: v-bind('borderColor'); + + background-color: v-bind('backgroundColor'); + } }