Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Template:Project Board/styles.css: Difference between revisions

Template page
Content deleted Content added
No edit summary
No edit summary
Line 2: Line 2:
display: flex;
display: flex;
flex-direction: row;
flex-direction: row;
flex-wrap: wrap;
flex-wrap: nowrap;
gap: var(--space-md);
gap: var(--space-md);
justify-content: center;
justify-content: start;
align-items: start;
align-items: start;
padding: var(--space-md);
padding: var(--space-md);
background: var(--color-surface-2);
background: var(--color-surface-2);
width: 100%;
width: 100%;
overflow: scroll;
}
}



Revision as of 21:11, May 21, 2025

.project-board {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: var(--space-md);
	justify-content: start;
	align-items: start;
	padding: var(--space-md);
	background: var(--color-surface-2);
	width: 100%;
	overflow: scroll;
}

.project-board-column {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: var(--space-sm);
	padding: var(--space-sm);
	background: var(--color-surface-3);
	flex: 0;
}