Styled viewport controls & cli copy

This commit is contained in:
Jake Archibald
2020-12-09 14:28:32 +00:00
parent 9062a75541
commit 21a8f62dcc
9 changed files with 250 additions and 109 deletions

View File

@@ -81,3 +81,28 @@
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;
}
.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);
}
}