asi-calculator/components/CalculationBaseOutput/CalculationBase.module.css

27 lines
618 B
CSS
Raw Normal View History

2024-03-30 19:27:18 +01:00
.calculationBase {
2024-03-30 23:10:36 +01:00
display: grid;
2024-03-31 05:03:37 +02:00
grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
2024-03-30 23:10:36 +01:00
justify-content: center;
2024-03-30 19:27:18 +01:00
border-top: 1px solid rgba(var(--foreground-rgb), 0.2);
border-left: 1px solid rgba(var(--foreground-rgb), 0.2);
border-bottom: none;
border-radius: var(--border-radius);
margin-top: 1.5rem;
}
.calculationBase li {
border-bottom: 1px solid rgba(var(--foreground-rgb), 0.2);
border-right: 1px solid rgba(var(--foreground-rgb), 0.2);
padding: 1rem;
2024-03-31 04:08:51 +02:00
font-size: 0.9rem;
2024-03-30 19:27:18 +01:00
}
2024-03-30 20:50:51 +01:00
2024-03-31 15:24:07 +02:00
.calculationBase p {
display: flex;
align-items: center;
2024-03-30 20:50:51 +01:00
}
2024-04-01 04:38:59 +02:00
.fiat {
color: var(--text-dimmed);
}