Skip to content

Commit

Permalink
Remove default mobile padding on nospace split component
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-barrett committed May 9, 2023
1 parent 5568a2e commit c5e3fb2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# HEAD

## Features

* **css:** Remove default mobile padding on nospace split component
* **js:** Protocol JS components are now written using modern JS and published as ES5/UMD format (#255).
* **js:** Removed pre-minified JS files from the published package. Consuming sites should handle their own minification.
* **css:** Removed pre-minified CSS files from the published package Consuming sites should handle their own minification.
Expand Down
8 changes: 8 additions & 0 deletions assets/sass/protocol/components/_split.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@
}
}

// Issue 779 - Remove default mobile padding on nospace split component
@media screen and (max-width: $screen-md) {
.mzp-t-split-nospace {
padding-top: 0;
padding-bottom: 0;
}
}

// * -------------------------------------------------------------------------- */
// side by side layout, float based fall back

Expand Down

0 comments on commit c5e3fb2

Please sign in to comment.