-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fixed column gaps to be larger when only a single sidebar is present. #267
Conversation
- Updated `grid-gap` to `gap` as docs say `grid-gap` is a legacy alias.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #267 +/- ##
=======================================
Coverage 14.38% 14.38%
=======================================
Files 26 26
Lines 1244 1244
Branches 300 300
=======================================
Hits 179 179
Misses 855 855
Partials 210 210 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please update to fix the gap on mobile
This issue was related to the ordering permutation variables not applying due to: .ct-layout {
$root: &;
&__inner {
#{$root}--no-bottom-left > #{$root}__inner > & {
color: red;
}
}
} resulting in: .ct-layout--no-bottom-left > .ct-layout__inner > .ct-layout__inner {
color: red;
} where it should only be: .ct-layout--no-bottom-left > .ct-layout__inner {
color: red;
} |
@sonamchaturvedi28 |
Test Env: https://6673c10cb8e00cf6d7986324--civictheme-uikit.netlify.app/?path=/story/base-layout--layout
|
1 is an issue |
Checklist before requesting a review
as
[#123] Verb in past tense with a period at the end.
Changed
section about WHY something wasdone if this was a bespoke implementation.
and they have passed.
Changed
grid-gap
togap
as docs saygrid-gap
is a legacy alias.Screenshots
gap-and-order.mp4