Skip to content

Commit

Permalink
Fixing padding for first line of code block (#1184)
Browse files Browse the repository at this point in the history
  • Loading branch information
loiswells97 authored Jan 31, 2025
1 parent 54fb00c commit c085612
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

### Fixed

- Fix AWS CLI in deploy script to 2.22.35 to workaround cloudflare issue (See https://developers.cloudflare.com/r2/examples/aws/aws-cli/) (#1178)

### Added

- Autosave instructions (#1163)
Expand All @@ -33,6 +29,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Login to save now logs in and automatically saves (#1162)
- Instructions panel heading (#1183)

### Fixed

- Fix AWS CLI in deploy script to 2.22.35 to workaround cloudflare issue (See https://developers.cloudflare.com/r2/examples/aws/aws-cli/) (#1178)
- Padding on instructions code block (#1184)

## [0.28.14] - 2025-01-06

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions src/assets/stylesheets/Instructions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
pre {
background-color: $rpf-grey-700;
border-radius: 8px;
padding: $space-0-5;
padding: $space-0-5 $space-1;
overflow: auto;
margin: $space-1 0;
}
Expand All @@ -52,7 +52,7 @@
color: $rpf-white;
background-color: $rpf-grey-700;
border-radius: 8px;
padding: calc(0.75 * $space-0-125) $space-0-5;
padding-block: calc(0.75 * $space-0-125);
}

.c-project-code {
Expand Down

0 comments on commit c085612

Please sign in to comment.