Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Fix close button alignment issue #2351

Merged
merged 3 commits into from
Sep 12, 2022
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Fixed

- `Dialog`: Fix close button alignment in cases where css order changes during build. ([@lorgan3](https://github.com/lorgan3)) in [#2351](https://github.com/teamleadercrm/ui/pull/2351))

### Dependency updates

## [16.0.3] - 2022-09-05
Expand All @@ -22,7 +24,7 @@

### Dependency updates

- `storybook`: Bump storybook from 6.5.9 to 6.5.10 ([@KristofColpaert](https://github.com/KristofColpaert)) in [#2327](https://github.com/teamleadercrm/ui/pull/2327)
- `storybook`: Bump storybook from 6.5.9 to 6.5.10 ([@KristofColpaert](https://github.com/KristofColpaert)) in [#2327](https://github.com/teamleadercrm/ui/pull/2327)

## [16.0.1] - 2022-08-08

Expand Down
8 changes: 4 additions & 4 deletions src/components/dialog/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
transition-delay: var(--animation-delay);
width: 100vw;
z-index: 2;

.close-icon {
margin-left: auto;
}
}

.inner {
Expand Down Expand Up @@ -90,10 +94,6 @@
padding: var(--spacer-regular);
}

.close-icon {
margin-left: auto;
}

.scroll-shadow {
box-shadow: 0px 0px 1px rgba(130, 130, 140, 0.09), 0px 0px 0px rgba(130, 130, 140, 0.09),
0px -4px 8px rgba(130, 130, 140, 0.09);
Expand Down