Template:Project Board/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) Replaced content with ".project-board { display: flex; flex-direction: row; flex-wrap: wrap; gap: var(--space-md); justify-content: space-between; align-items: start; padding: var(--space-md); background: var(--color-surface-2); width: 100%; }" Tag: Replaced |
Tesinormed (talk | contribs) No edit summary |
||
| Line 4: | Line 4: | ||
flex-wrap: wrap; |
flex-wrap: wrap; |
||
gap: var(--space-md); |
gap: var(--space-md); |
||
justify-content: |
justify-content: center; |
||
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%; |
||
} |
|||
.project-board { |
|||
display: flex; |
|||
flex-direction: column; |
|||
flex-wrap: nowrap; |
|||
gap: var(--space-sm); |
|||
padding: var(--space-sm); |
|||
background: var(--color-surface-3); |
|||
} |
} |
||
Revision as of 21:07, May 21, 2025
.project-board {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: var(--space-md);
justify-content: center;
align-items: start;
padding: var(--space-md);
background: var(--color-surface-2);
width: 100%;
}
.project-board {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
gap: var(--space-sm);
padding: var(--space-sm);
background: var(--color-surface-3);
}