Starter Notes
Simple personal workspace
- Three boards
- Local drafts
- Basic export
Each card uses border-box, percentage width, max-width, min-width, and min-height.
Inputs and images can safely use width: 100% because borders and padding stay within the declared width.
Simple personal workspace
Flexible project workspace
Shared workspace for groups
Cards combine border-box with flexible width limits.
.card {
box-sizing: border-box;
width: 100%;
max-width: 320px;
min-width: 220px;
min-height: 180px;
}