mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
22 lines
487 B
SCSS
22 lines
487 B
SCSS
._fastapi {
|
|
> h2 { @extend %block-heading; }
|
|
> h3 { @extend %block-label, %label-blue; }
|
|
|
|
code { @extend %label; }
|
|
|
|
.tabbed-block {
|
|
border: 1px dashed black;
|
|
padding: 0.5rem 1rem 0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.tabbed-block label {
|
|
font-weight: var(--bolderFontWeight);
|
|
}
|
|
|
|
.admonition { @extend %note; }
|
|
.admonition.tip { @extend %note-green; }
|
|
.admonition.note { @extend %note-blue; }
|
|
.admonition-title {
|
|
font-weight: var(--bolderFontWeight);
|
|
}
|
|
}
|