17 lines
415 B
CSS
17 lines
415 B
CSS
.codeBlockHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.25rem 0.5rem;
|
|
background: var(--prism-background-color);
|
|
position: sticky;
|
|
top: var(--ifm-navbar-height, 3.125rem); /* Stick below the Docusaurus navbar; fallback for safety */
|
|
}
|
|
|
|
.languageLabel {
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
color: var(--ifm-color-emphasis-600);
|
|
padding: 0.3125rem;
|
|
}
|