mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
17 lines
351 B
CSS
17 lines
351 B
CSS
.label {
|
|
color: var(--brand-grey);
|
|
font-size: var(--font-size-base);
|
|
font-family: var(--font-family-title);
|
|
line-height: 1.2;
|
|
display: block;
|
|
margin-bottom: calc(var(--spacer) / 4);
|
|
}
|
|
|
|
.required:after {
|
|
content: '*';
|
|
font-size: var(--font-size-base);
|
|
color: var(--brand-grey-light);
|
|
display: inline-block;
|
|
margin-left: 0.1rem;
|
|
}
|