Template:Project Board/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) No edit summary |
Tesinormed (talk | contribs) No edit summary |
||
| Line 6: | Line 6: | ||
justify-content: start; |
justify-content: start; |
||
align-items: start; |
align-items: start; |
||
background: var(--color-surface-1); |
|||
width: 100%; |
width: 100%; |
||
overflow: scroll; |
overflow: scroll; |
||
Revision as of 21:14, May 21, 2025
.project-board {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
gap: var(--space-md);
justify-content: start;
align-items: start;
width: 100%;
overflow: scroll;
}
.project-board-column {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
gap: var(--space-md);
padding: var(--space-md);
background: var(--color-surface-2);
flex: 0;
}
.project-board-card {
padding: var(--space-xs);
background: var(--color-surface-3);
border-radius: var(--border-radius-base);
flex: 1;
}