Skip to content

Commit 6ee85d8

Browse files
authored
Merge branch 'main' into fix-long-words-creating-overflow
2 parents eccff84 + e869bc1 commit 6ee85d8

6 files changed

Lines changed: 19 additions & 29 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2020

2121
- Styling issue on sidebar on mobile (#1194)
2222
- Styling issue preventing scrolling in the sidebar (#1216)
23+
- Styling issue on status bar on mobile (#1217)
2324

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

src/assets/icons/cloud_tick.svg

Lines changed: 1 addition & 14 deletions
Loading

src/assets/icons/cloud_upload.svg

Lines changed: 1 addition & 10 deletions
Loading

src/assets/stylesheets/MobileProjectBar.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
background-color: $rpf-white;
88
border-block-start: 1px solid $rpf-grey-150;
99
display: flex;
10-
block-size: 25px;
1110
justify-content: space-between;
12-
padding: 0 $space-0-5;
11+
padding: $space-0-5;
12+
gap: var(--space-1);
1313
}
1414

1515
.mobile-project-bar__name {

src/assets/stylesheets/SaveStatus.scss

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,25 @@
88
gap: $space-0-25;
99
justify-content: flex-end;
1010
margin-block: 0;
11-
padding-inline: $space-1;
11+
padding-inline: var(--space-1);
1212
}
1313

1414
.save-status--mobile {
1515
margin: unset;
16+
padding-inline: 0;
1617

1718
.save-status__text {
18-
@include font-size-1(regular);
19+
@include font-size-0-75(regular);
20+
}
21+
22+
.save-status__icon {
23+
inline-size: 16px;
24+
block-size: 16px;
25+
26+
svg {
27+
width: 100%;
28+
height: 100%;
29+
}
1930
}
2031
}
2132

src/components/SaveStatus/SaveStatus.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const SaveStatus = ({ isMobile = false }) => {
4343
<div className="save-status__icon">
4444
<CloudUploadIcon />
4545
</div>
46-
<div className="save-status__status">
46+
<div className="save-status__text">
4747
{t("saveStatus.saving")}&hellip;
4848
</div>
4949
</>

0 commit comments

Comments
 (0)