Skip to content

Commit 3d7d6d0

Browse files
committed
Fix - Title - Removed padding x
1 parent 5e1e93e commit 3d7d6d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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="`padding: 0 32px; width:calc(100% - 64px);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="`padding: 0 32px; width:calc(100% - 64px);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)