Skip to content

Commit

Permalink
Add spacing in AutoScroll, Fix bug in openeing non animated mode in i…
Browse files Browse the repository at this point in the history
…nteractive mode.
  • Loading branch information
amovar18 committed Jan 29, 2025
1 parent 534046a commit 9a62f61
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/explorable-explanations/public/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ text {

#open-button {
position: absolute;
top: 50px;
top: 35px;
left: 50px;
cursor: pointer;
display: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const Branches = async ({
}) => {
x1 = typeof x1 === 'function' ? x1() : x1;
y1 = typeof y1 === 'function' ? y1() : y1;
const currentSite =
config.timeline.circles[app.timeline.currentIndex].website;

const currentSite = config.timeline.circles[currentIndex].website;
const typeOfBranches = branches[0].type;

branches = branches.map((branch, index) => ({
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/view/devtools/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ text {

#open-button {
position: absolute;
top: 50px;
top: 35px;
left: 50px;
cursor: pointer;
display: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const Panel = ({
onChange={(event) => setAutoScroll(event.target.checked)}
className="hover:cursor-pointer"
/>
AutoScroll
Auto Scroll
</label>
</div>
);
Expand Down

0 comments on commit 9a62f61

Please sign in to comment.