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

1124: Fix spacing #352

Merged
merged 2 commits into from
Apr 5, 2024
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

- [PR-352](https://github.com/itk-dev/os2loop/pull/352):
Fix spacing
- [PR-351](https://github.com/itk-dev/os2loop/pull/351):
Updated tasks
- [PR-341](https://github.com/itk-dev/os2loop/pull/341):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ img {
height: auto;
}

.paragraph {
margin-bottom: $spacer * 2;
}

// redesign using boostrap overriding and a component-based approach
@import "bootstrap-custom/bootstrap-custom-index.scss";
@import "components/components-index.scss";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,8 @@ ol.os2loop-documents-steps {
}
}
}

img {
margin-bottom: $spacer;
}
}
Loading