trade-frontend/src/components/dex/StatItem/styles.module.scss
AzizbekFayziyev 5ca9dc4bea fix: build
2025-08-13 14:15:53 +05:00

44 lines
567 B
SCSS

.statItem {
display: flex;
flex-direction: column;
gap: 6px;
&__nav {
display: flex;
align-items: center;
gap: 5px;
&_title {
color: var(--footer-selected-link);
white-space: nowrap;
font-size: 14px;
font-weight: 700;
}
}
&__content {
display: flex;
align-items: center;
gap: 5px;
&_val {
white-space: nowrap;
font-size: 14px;
font-weight: 400;
}
&_coefficient {
white-space: nowrap;
font-size: 14px;
font-weight: 400;
&.green {
color: #16d1d6;
}
&.red {
color: #ff6767;
}
}
}
}