Skip to content

Commit 25f8f8c

Browse files
committed
VueUi3dBar added component
1 parent d5aac73 commit 25f8f8c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-data-ui",
33
"private": false,
4-
"version": "1.9.49",
4+
"version": "1.9.50",
55
"type": "module",
66
"description": "A user-empowering data visualization Vue components library",
77
"keywords": [

src/atoms/Title.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const CONFIG = useNestedProp({
3535
<template>
3636
<div
3737
:data-cy="CONFIG.title.cy"
38-
:style="`width:calc(100% - 72px);text-align:center;color:${
38+
:style="`width:100%;text-align:center;color:${
3939
CONFIG.title.color
4040
};font-size:${CONFIG.title.fontSize}px;font-weight:${
4141
CONFIG.title.bold ? 'bold' : ''
@@ -46,7 +46,7 @@ const CONFIG = useNestedProp({
4646
<div
4747
:data-cy="CONFIG.subtitle.cy"
4848
v-if="CONFIG.subtitle.text"
49-
:style="`width:calc(100% - 72px);text-align:center;color:${
49+
:style="`width:100%;text-align:center;color:${
5050
CONFIG.subtitle.color
5151
};font-size:${CONFIG.subtitle.fontSize}px;font-weight:${
5252
CONFIG.subtitle.bold ? 'bold' : ''

0 commit comments

Comments
 (0)