Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 0 additions & 93 deletions .github/workflows/deploy-beta.yml

This file was deleted.

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- [MAJOR] Migrated all components from styled-components to pure CSS/SCSS with CSS layers
- [MAJOR] Replaced JavaScript theme system with CSS custom properties (`--kiba-*`)
- [MAJOR] Updated to Storybook 10 with CSF3 format and MDX documentation
- [MINOR] Changed `ContainingView` to not make children automatically have `overflow: auto`

### Removed

Expand Down
1 change: 0 additions & 1 deletion src/wrappers/containingView/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export function ContainingView(props: IContainingViewProps): React.ReactElement
const wrapperStyle: React.CSSProperties = {
maxWidth: 'var(--kiba-screen-width-max)',
width: '100%',
overflow: 'auto',
...(isCenteredHorizontally ? { marginLeft: 'auto', marginRight: 'auto' } : {}),
};
return (
Expand Down
Loading