Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration: Table styles not applied #858

Merged
merged 8 commits into from
Jan 2, 2024
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 14 additions & 0 deletions src/assets/stylesheets/Instructions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading