Skip to content

Commit

Permalink
Merge branch 'main' into KZN-2885/filter-select-jumping-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mcwinter07 authored Jan 24, 2025
2 parents 426898d + 0641f68 commit d006ccf
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
6 changes: 6 additions & 0 deletions docs/.storybook/preview.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ pre code {
padding: 2.5rem;
}

@media screen and (min-width >= 1069px) {
.sbdocs-wrapper {
margin-left: auto;
}
}

.sbdocs.sbdocs-content {
max-width: unset;

Expand Down
6 changes: 6 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.70.12

### Patch Changes

- [#5476](https://github.com/cultureamp/kaizen-design-system/pull/5476) [`bb3b1c3`](https://github.com/cultureamp/kaizen-design-system/commit/bb3b1c30d7f3fc81837b774ba3b2c2ccf5648157) - [Revert] Content: use padding instead of margin for inline spacing

## 1.70.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kaizen/components",
"version": "1.70.11",
"version": "1.70.12",
"description": "Kaizen component library",
"author": "Geoffrey Chong <[email protected]>",
"homepage": "https://cultureamp.design",
Expand Down
4 changes: 2 additions & 2 deletions packages/components/src/Content/Content.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

.content {
max-width: $layout-content-max-width;
padding: 0 $layout-content-side-margin;
margin: 0 $layout-content-side-margin;
width: 100%;

@media (max-width: calc(#{$layout-breakpoints-large} - 1px)) {
padding: 0 $content-margin-width-on-medium-and-small;
margin: 0 $content-margin-width-on-medium-and-small;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as FilterDRPStories from './FilterDateRangePicker.stories'

<Meta of={FilterDRPStories} />

# Filter
# FilterDateRangePicker

<ResourceLinks
sourceCode="https://github.com/cultureamp/kaizen-design-system/tree/main/packages/components/src/FilterDateRangePicker"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as FilterMultiSelectStories from './FilterMultiSelect.stories'

<Meta of={FilterMultiSelectStories} />

# Filter Bar
# FilterMultiSelect

<ResourceLinks
sourceCode="https://github.com/cultureamp/kaizen-design-system/tree/main/packages/components/src/FilterMultiSelect"
Expand Down

0 comments on commit d006ccf

Please sign in to comment.