Skip to content

Commit e3f8522

Browse files
Fix scroll issue for file downloads (#1216)
closes RaspberryPiFoundation/digital-editor-issues#686
1 parent 426ba8a commit e3f8522

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
## [0.30.1] - 2025-06-09
1010

1111
### Added
12-
12+
1313
- Fake translation for stress testing (#1206)
1414

1515
### Changed
@@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1919
### Fixed
2020

2121
- Styling issue on sidebar on mobile (#1194)
22+
- Styling issue preventing scrolling in the sidebar (#1216)
2223

2324
## [0.30.0] - 2025-04-15
2425

src/assets/stylesheets/ProjectsPanel.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
@use "./rpf_design_system/font-size" as *;
44

55
.projects-panel-wrapper {
6-
.sidebar__panel-content {
7-
overflow: visible;
8-
}
9-
106
.projects-panel__your-projects-button {
117
display: flex;
128
align-items: center;

src/assets/stylesheets/Sidebar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
display: flex;
102102
flex-direction: column;
103103
padding: $space-1;
104+
padding-block-end: 0;
104105
border-radius: 0 8px 8px 0;
105106
inline-size: inherit;
106107
background: var(--sidebar-panel-background);
@@ -128,7 +129,6 @@
128129
padding: $space-1 0;
129130
overflow-y: scroll;
130131
scrollbar-width: thin;
131-
overflow: auto;
132132
}
133133

134134
.sidebar__panel-footer {

0 commit comments

Comments
 (0)