1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#version-warning {
top: 0;
position: sticky;
z-index: 60;
width: 100%;
height: 2.5rem;
display: flex;
column-gap: 0.5rem;
justify-content: center;
justify-items: center;
align-items: center;
background-color: #eee;
border-bottom: 2px solid #ae2828;
}
@media (prefers-color-scheme: dark) {
body:not([data-theme="light"]) #version-warning {
background-color: black;
}
}
.breaking-change {
font-variant: all-small-caps;
margin-left: 0.4rem;
color: #f55353;
}
p {
font-size: 1.1em;
}
html[data-theme="dark"] .mermaid svg {
background-color: white;
padding: 1em;
}
|