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 2: | Line 2: | ||
display: flex; |
display: flex; |
||
flex-direction: row; |
flex-direction: row; |
||
flex-wrap: |
flex-wrap: nowrap; |
||
gap: var(--space-md); |
gap: var(--space-md); |
||
justify-content: |
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;
}