mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-15 07:41:21 +00:00
22 lines
381 B
SCSS
22 lines
381 B
SCSS
|
.api-method-parameter {
|
||
|
&-required {
|
||
|
text-transform: uppercase;
|
||
|
font-size: 0.75em;
|
||
|
font-weight: 500;
|
||
|
color: var(--ui-error, red);
|
||
|
}
|
||
|
|
||
|
&-optional {
|
||
|
text-transform: uppercase;
|
||
|
font-size: 0.75em;
|
||
|
font-weight: 500;
|
||
|
color: var(--ui-text-muted);
|
||
|
}
|
||
|
|
||
|
&-nullable {
|
||
|
text-transform: uppercase;
|
||
|
font-size: 0.75em;
|
||
|
font-weight: 500;
|
||
|
color: var(--ui-error, red);
|
||
|
}
|
||
|
}
|