Porządkowanie css, i usuwanie radiowego

This commit is contained in:
dm
2025-11-25 09:52:02 +01:00
parent 0bcc1aeefc
commit 665b787c5c
22 changed files with 202 additions and 198 deletions

View File

@@ -4,7 +4,7 @@
.fuz-table-wrapper {
@apply overflow-x-auto rounded-3xl shadow-lg mb-0;
background: var(--fuz-bg);
background: var(--f-background);
border: 1px solid rgba(0,0,0,0.07);
}
@@ -14,7 +14,7 @@
.fuz-table {
@apply min-w-full border-collapse;
color: var(--fuz-text);
color: var(--f-text);
}
@@ -24,16 +24,16 @@
========================================= */
.fuz-table-head {
background: color-mix(in srgb, var(--fuz-text) 6%, transparent);
background: color-mix(in srgb, var(--f-text) 6%, transparent);
}
:root.dark .fuz-table-head {
background: color-mix(in srgb, var(--fuz-text) 12%, transparent);
background: color-mix(in srgb, var(--f-text) 12%, transparent);
}
.fuz-table-heading {
@apply text-center font-semibold py-4 px-4 text-lg;
color: var(--fuz-text);
color: var(--f-text);
}
@@ -49,7 +49,7 @@
.fuz-plan-title {
@apply text-lg font-semibold mb-1;
color: var(--fuz-text);
color: var(--f-text);
}
.fuz-plan-price {
@@ -77,11 +77,11 @@
========================================= */
.fuz-row-even {
background: color-mix(in srgb, var(--fuz-text) 4%, transparent);
background: color-mix(in srgb, var(--f-text) 4%, transparent);
}
:root.dark .fuz-row-even {
background: color-mix(in srgb, var(--fuz-text) 10%, transparent);
background: color-mix(in srgb, var(--f-text) 10%, transparent);
}
.fuz-row-odd {
@@ -90,7 +90,7 @@
.fuz-feature-name {
@apply py-3 px-4 text-lg font-medium;
color: var(--fuz-text);
color: var(--f-text);
border-top: 1px solid rgba(0,0,0,0.07);
}
@@ -100,7 +100,7 @@
.fuz-feature-cell {
@apply py-3 px-4 text-center text-lg;
color: var(--fuz-text);
color: var(--f-text);
border-top: 1px solid rgba(0,0,0,0.07);
}