Merge upstream

This commit is contained in:
Jason Miller
2020-12-10 10:24:56 -05:00
parent a2fb7a38cd
commit d1d181fccd
26 changed files with 358 additions and 29 deletions

View File

@@ -81,3 +81,37 @@
box-sizing: border-box;
border-radius: 4px;
}
.title-and-buttons {
grid-template-columns: 1fr;
grid-auto-columns: max-content;
grid-auto-flow: column;
display: grid;
gap: 0.8rem;
}
.title-button {
composes: unbutton from global;
svg {
--size: 20px;
display: block;
width: var(--size);
height: var(--size);
}
}
.cli-button {
composes: title-button;
svg {
stroke: var(--header-text-color);
}
}
.copy-over-button {
composes: title-button;
svg {
fill: var(--header-text-color);
}
}