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

61 lines
1.0 KiB
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-03-31 06:01:26 +02:00
grid-template-columns: 24px 2fr 3fr;
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
}
.logo {
2024-03-31 05:03:37 +02:00
margin-top: -0.15rem;
2024-03-30 02:03:43 +01:00
vertical-align: middle;
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
border-radius: 50%;
background-color: rgba(var(--foreground-rgb), 0.5);
}
.logo img {
width: 23px;
height: 23px;
border-radius: 50%;
filter: grayscale(1);
}
.logo[data-symbol='AGIX'] img {
2024-03-30 02:28:48 +01:00
filter: invert(1) grayscale(1) contrast(1.5);
2024-03-30 02:03:43 +01:00
}
@media (prefers-color-scheme: dark) {
.logo[data-symbol='OCEAN'] img,
.logo[data-symbol='FET'] img {
filter: invert(1) grayscale(1);
}
.logo[data-symbol='AGIX'] img {
filter: grayscale(1);
}
2024-03-29 21:37:30 +01:00
}