mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
24 lines
404 B
CSS
24 lines
404 B
CSS
.price {
|
|
display: flex;
|
|
gap: calc(var(--spacer) / 2);
|
|
justify-content: center;
|
|
border: 1px solid var(--brand-grey-lighter);
|
|
background: var(--brand-grey-dimmed);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacer);
|
|
}
|
|
|
|
.price > div {
|
|
max-width: 8rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.price label {
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.price input {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|