diff --git a/CHANGELOG.md b/CHANGELOG.md index 425f6a6ff..b1fe2ceda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -67,6 +67,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Instructions Panel for the sidebar (#751, #768) - Added ability to fix the theme in the web component (#757) - Added ability to increase font size in the web component (#757) +- Instructions table styling (#858) ### Changed diff --git a/src/assets/stylesheets/Instructions.scss b/src/assets/stylesheets/Instructions.scss index f4f188dc2..1c7434e18 100644 --- a/src/assets/stylesheets/Instructions.scss +++ b/src/assets/stylesheets/Instructions.scss @@ -18,6 +18,20 @@ max-width: 100%; } + table { + border-collapse: collapse; + margin-bottom: $space-1-5; + inline-size: 100%; + + tr { + border-block-end: 1px solid $rpf-black; + } + + td { + padding: $space-0-5 $space-1-5; + } + } + .c-project-code { margin: $space-1 0; border-radius: 8px;