Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Fix: Tweaks layout section spacings #469

Merged
merged 2 commits into from Apr 8, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed

### Fixed
- Fix layout section spacings style (#469)

### Security

Expand Down
4 changes: 2 additions & 2 deletions src/styles/global/layout.scss
Expand Up @@ -19,12 +19,12 @@ main,
}

.layout__section {
padding-top: var(--fs-spacing-4);
padding-bottom: var(--fs-spacing-4);
margin-top: var(--fs-spacing-4);

@include media(">=notebook") {
padding-top: var(--fs-grid-padding);
padding-bottom: var(--fs-grid-padding);
margin-top: var(--fs-grid-padding);
}
}

Expand Down