Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The preview panel got a big clarity upgrade:
- The pattern now **repeats right to the edges** of the panel, at any size or zoom level — resizing the panel just reveals more of the pattern instead of stretching it.
- **Zoom controls the pattern size** 50% up to 500%
- **Fixed Monitor Interpolation** by adding a formula to calculate how to display pattern **sharp and pixel-perfect** at every level and every screen size — no more mis-sized, blurry or smudged edges (avoids half pixel rounding).
- The preview area now takes up about **two-thirds of the panel's height**, giving your pattern more room to shine.
- The preview area now takes up about **~~2/3rds~~ 60% of the panel's height**, giving your pattern more room to shine.
- Fixed an edge case where the pattern could stop just short of the panel's borders at certain zoom levels.

## August 14, 2026 — Favorite Colours
Expand Down
4 changes: 2 additions & 2 deletions src/styles/editor-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@
}

.preview-canvas-wrap {
flex: 2;
flex: 3;
min-height: 0;
display: flex;
justify-content: center;
Expand All @@ -812,7 +812,7 @@

/* Colors Section */
.colors-section {
flex: 1;
flex: 2;
overflow-y: auto;
min-height: 0;
}
Expand Down
Loading