Skip to content

Commit

Permalink
fixes #269 in 3x version of Foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
acketon committed Feb 2, 2024
1 parent 432665d commit 6fd1d3b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Unreleased
- 3.2.3 version hotfix: #269 Layout issue for Profiles Advanced View.

## 3.2.2

* Adds Medium, Medium Alt, and Rhett support to default icons.
Expand Down
12 changes: 7 additions & 5 deletions css-dev/burf-theme/profiles/_profile-format-advanced.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,7 @@ $_profile-adv-cols-md: $grid-number-columns / $profiles-advanced-cols-md;
@extend %col-xs-#{$_profile-adv-cols-xs};
@extend %col-md-#{$_profile-adv-cols-md};

@include breakpoint( $md ) {
&:nth-child( #{$profiles-advanced-cols-md}n+1 ) {
clear: left;
}
}


&:nth-child( #{$profiles-advanced-cols-xs}n+1 ) {
clear: left;
Expand All @@ -69,6 +65,12 @@ $_profile-adv-cols-md: $grid-number-columns / $profiles-advanced-cols-md;
clear: none;
}
}

@include breakpoint( $md ) {
&:nth-child( #{$profiles-advanced-cols-md}n+1 ) {
clear: left;
}
}
}

/// Styles an advanced profile item link.
Expand Down

0 comments on commit 6fd1d3b

Please sign in to comment.