Login
4 branches 0 tags
Ben (Desktop/Arch) Code cleanup 53b2511 1 month ago 119 Commits
rubhub / frontend / app / css / project.css
.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;
}

.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 rubhub-clone-url {
		grid-column: 1 / -1;
		grid-row: 2;
	}
}