asi-calculator/components/ResultRow/ResultRow.module.css

27 lines
417 B
CSS
Raw Normal View History

2024-03-29 21:37:30 +01:00
.result {
margin-bottom: 1rem;
2024-03-31 06:01:26 +02:00
padding-bottom: 0.75rem;
border-bottom: 1px solid rgba(var(--foreground-rgb), 0.1);
2024-03-29 21:37:30 +01:00
}
2024-03-29 22:54:07 +01:00
.result:last-child {
margin-bottom: 0;
2024-03-31 06:01:26 +02:00
border-bottom: none;
2024-03-29 22:54:07 +01:00
}
2024-03-31 05:03:37 +02:00
.resultLine {
display: inline-grid;
2024-04-01 02:15:51 +02:00
grid-template-columns: 24px 40% 40%;
2024-03-31 05:03:37 +02:00
gap: 0.5rem;
align-items: center;
width: 100%;
2024-03-31 06:01:26 +02:00
}
2024-03-31 05:03:37 +02:00
.fiat {
color: rgba(var(--foreground-rgb), 0.6);
}
.iconArrow {
margin-left: 0.25rem;
2024-03-30 02:03:43 +01:00
}