1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-15 17:03:30 +02:00
market/src/components/atoms/Price/index.module.css

19 lines
400 B
CSS
Raw Normal View History

2020-05-07 08:03:30 +02:00
.price {
font-weight: var(--font-weight-bold);
font-size: var(--font-size-large);
color: var(--brand-grey-dark);
2020-08-07 18:12:39 +02:00
line-height: 1;
2020-05-07 08:03:30 +02:00
}
2020-07-13 23:45:20 +02:00
.price span:first-child {
2020-05-07 08:03:30 +02:00
font-weight: var(--font-weight-base);
color: var(--color-secondary);
2020-07-07 23:00:16 +02:00
font-size: var(--font-size-base);
2020-05-07 08:03:30 +02:00
}
2020-05-25 14:53:38 +02:00
.small {
2020-07-13 23:45:20 +02:00
/* lazy making-conversion-smaller-with-same-markup */
2020-08-05 13:33:48 +02:00
transform: scale(0.8);
2020-05-25 14:53:38 +02:00
transform-origin: left 80%;
}