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
1 change: 1 addition & 0 deletions src/assets/stylesheets/Button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@

&--secondary {
background-color: inherit;
border-radius: var(--rpf-secondary-button-radius, $space-0-5);

color: var(--rpf-button-secondary-text-color);

Expand Down
4 changes: 4 additions & 0 deletions src/assets/stylesheets/Instructions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
.project-instructions {
block-size: 100%;

&__content {
padding-block-end: var(--project-instructions-padding, $space-1);
}

h2 {
@include typography.style-1-5(bold);
margin: 0;
Expand Down
2 changes: 2 additions & 0 deletions src/assets/stylesheets/ProgressBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
justify-content: center;
margin: auto;
gap: $space-1;
padding-block: $space-0-5;

.progress-container {
flex: 1;
min-inline-size: 0px;
display: flex;
flex-direction: column;
align-items: center;
gap: $space-0-25;
}

progress {
Expand Down
6 changes: 3 additions & 3 deletions src/assets/stylesheets/Sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
.sidebar__bar-options--bottom {
display: flex;
flex-direction: column;
align-items: center;
align-items: var(--sidebar-options-alignment, center);
justify-content: center;
gap: $space-0-5;
}
Expand All @@ -66,7 +66,7 @@
position: absolute;
top: -8px;
bottom: -1px;
right: -11px;
right: -12px;
width: var(--sidebar-border-obscurer-width);
height: 60px;
background-color: var(--sidebar-panel-background);
Expand Down Expand Up @@ -121,7 +121,7 @@
}

.sidebar__panel--with-footer {
padding-block-end: $space-2;
padding-block-end: var(--sidebar-footer-padding, $space-2);
}

.sidebar__panel-heading {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const ProgressBar = () => {
<div className="progress-bar">
<Button
className={"btn--secondary btn--small"}
buttonOuter
onClickHandler={goToPreviousStep}
ButtonIcon={ChevronLeft}
disabled={currentStepPosition === 0}
Expand All @@ -54,7 +53,6 @@ const ProgressBar = () => {

<Button
className={"btn--secondary btn--small"}
buttonOuter
onClickHandler={goToNextStep}
ButtonIcon={ChevronRight}
disabled={currentStepPosition === numberOfSteps - 1}
Expand Down