This commit is contained in:
Benjamin Beganović 2020-10-01 13:33:38 +02:00
parent 40229e7ae3
commit ecfbf62856

View File

@ -5,6 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style id="style"> <style id="style">
:root {
--primary-color: $primary_color;
--secondary-color: $secondary_color;
}
* { * {
font-size: '$font-size'; font-size: '$font-size';
} }
@ -86,7 +91,7 @@
font-size: 1.1rem; font-size: 1.1rem;
padding-bottom: 1.5rem; padding-bottom: 1.5rem;
padding-left: 1rem; padding-left: 1rem;
color: #396d49; color: var(--primary-color);
font-weight: medium; font-weight: medium;
} }
#product-table > thead > tr > th:last-child { #product-table > thead > tr > th:last-child {
@ -131,7 +136,7 @@
#product-table-footer #product-table-footer
> * > *
[data-element='product-table-balance-due'] { [data-element='product-table-balance-due'] {
color: #396d49; color: var(--primary-color);
} }
#product-table-footer > * > :last-child { #product-table-footer > * > :last-child {
text-align: right; text-align: right;