Skip to content

Commit

Permalink
VueUi3dBar added component
Browse files Browse the repository at this point in the history
  • Loading branch information
graphieros committed Jan 1, 2024
1 parent d5aac73 commit 25f8f8c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-data-ui",
"private": false,
"version": "1.9.49",
"version": "1.9.50",
"type": "module",
"description": "A user-empowering data visualization Vue components library",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/atoms/Title.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const CONFIG = useNestedProp({
<template>
<div
:data-cy="CONFIG.title.cy"
:style="`width:calc(100% - 72px);text-align:center;color:${
:style="`width:100%;text-align:center;color:${
CONFIG.title.color
};font-size:${CONFIG.title.fontSize}px;font-weight:${
CONFIG.title.bold ? 'bold' : ''
Expand All @@ -46,7 +46,7 @@ const CONFIG = useNestedProp({
<div
:data-cy="CONFIG.subtitle.cy"
v-if="CONFIG.subtitle.text"
:style="`width:calc(100% - 72px);text-align:center;color:${
:style="`width:100%;text-align:center;color:${
CONFIG.subtitle.color
};font-size:${CONFIG.subtitle.fontSize}px;font-weight:${
CONFIG.subtitle.bold ? 'bold' : ''
Expand Down

0 comments on commit 25f8f8c

Please sign in to comment.