Skip to content

Commit cd43960

Browse files
authored
Merge branch 'main' into dependabot/bun/glob-11.0.2
2 parents a114e9a + 456ca2c commit cd43960

File tree

9 files changed

+555
-257
lines changed

9 files changed

+555
-257
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
1515
This is currently only enabled in the `/render` page to slowly build up a collection of
1616
functions to match and confidence in the representation before adding to the main tool.
1717
- When changing the code language, the URL is updated to reflect that.
18+
- Pan & zoom for the graphs in both the IDE extensions and the web version
1819

1920
### Fixed
2021

@@ -31,6 +32,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
3132
- Sharing now shares full config in addition to code.
3233
- Sharing now uses the `compressed=` query parameter for all information.
3334
- Migrated from Bun Test to Vitest. Tests are now run using `bun vitest`.
35+
- Web version layout changed to always fit in one screen (no scrollbar).
3436

3537
## [0.0.15] - 2025-03-26
3638

src/components/ColorSchemeEditor.svelte

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,20 +105,22 @@ function resetList() {
105105
.wrapper {
106106
display: flex;
107107
justify-content: center;
108-
margin-top: 3rem;
109108
}
110109
.label {
111110
align-self: center;
112111
}
113112
.main {
114113
width: fit-content;
114+
display: flex;
115+
flex-direction: column;
116+
gap: 1rem;
115117
}
116118
.border {
117119
border: 1px solid var(--color-picker-border);
118120
border-radius: 100%;
119121
width: fit-content;
120-
margin: 0px;
121-
padding: 0px;
122+
margin: 0;
123+
padding: 0;
122124
}
123125
124126
.colors {

0 commit comments

Comments
 (0)