This commit is contained in:
Roman Pyrih
2025-12-16 09:52:20 +01:00
parent d6153b3da6
commit 554282bcae
3 changed files with 52 additions and 1 deletions

View File

@@ -1103,4 +1103,27 @@
font-size: 24px;
animation: btn-pulse-icon 2s infinite;
z-index: 1;
}
.product-table table {
background-color: transparent;
}
.product-table table tr {
background-color: transparent;
border-bottom: 1px solid #181c1d;
}
.product-table table tr td {
border: none;
background-color: transparent !important;
font-family: "Plus Jakarta Sans", Sans-serif;
font-size: 14px;
padding: 12px 5px;
}
.product-table table tr td:nth-child(1) {
font-weight: 600;
width: 65%;
}
.product-table table tr td:nth-child(2) {
font-weight: 400;
width: 35%;
}/*# sourceMappingURL=custom.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -1453,3 +1453,31 @@
}
}
}
.product-table {
table {
background-color: transparent;
tr {
background-color: transparent;
border-bottom: 1px solid #181c1d;
td {
border: none;
background-color: transparent !important;
font-family: 'Plus Jakarta Sans', Sans-serif;
font-size: 14px;
padding: 12px 5px;
&:nth-child(1) {
font-weight: 600;
width: 65%;
}
&:nth-child(2) {
font-weight: 400;
width: 35%;
}
}
}
}
}