text/css
•
1.03 KB
•
70 lines
.page-header {
margin-bottom: var(--space-l);
}
.project-header {
color: var(--text-color);
font-size: 1.6rem;
margin-bottom: 0;
}
.project-header a {
text-decoration: none;
color: var(--text-color);
}
.project-header a:last-of-type {
color: var(--primary-color);
}
.repo-bar {
display: flex;
gap: var(--space-m);
align-content: center;
padding: var(--space-m) 0;
}
.repo-bar > select {
width: auto;
margin-bottom: 0;
max-width: 120px;
}
.repo-bar > * {
align-content: center;
}
@media screen and (max-width: 700px) {
.repo-bar {
display: grid;
grid-template-columns: auto 1fr auto auto;
grid-template-rows: auto auto;
gap: var(--space-m) var(--space-m);
align-items: center;
margin-bottom: var(--space-l);
}
.repo-bar .branch-switcher {
grid-column: 1;
grid-row: 1;
}
.repo-bar .repo-branches {
grid-column: 3;
grid-row: 1;
}
.repo-bar .repo-tags {
grid-column: 4;
grid-row: 1;
}
.repo-bar .flex-gap {
display: none;
}
.repo-bar .clone-url {
grid-column: 1 / -1;
grid-row: 2;
}
}