feat(SW-829): Added Total price (VAT)

This commit is contained in:
Pontus Dreij
2024-11-13 14:05:01 +01:00
parent 9a667257a4
commit 80377f4e4e
5 changed files with 46 additions and 24 deletions

View File

@@ -52,6 +52,10 @@
text-align: left;
}
.textAlignRight {
text-align: right;
}
.black {
color: var(--Main-Grey-100);
}

View File

@@ -30,6 +30,7 @@ const config = {
textAlign: {
center: styles.textAlignCenter,
left: styles.textAlignLeft,
right: styles.textAlignRight,
},
textTransform: {
bold: styles.bold,
@@ -52,6 +53,7 @@ const fontOnlyconfig = {
textAlign: {
center: styles.textAlignCenter,
left: styles.textAlignLeft,
right: styles.textAlignRight,
},
textTransform: {
bold: styles.bold,

View File

@@ -47,6 +47,10 @@
text-align: left;
}
.right {
text-align: right;
}
.black {
color: var(--Main-Grey-100);
}

View File

@@ -18,6 +18,7 @@ const config = {
textAlign: {
center: styles.center,
left: styles.left,
right: styles.right,
},
textTransform: {
regular: styles.regular,