Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix(feedback): Fix form width on mobile devices
Improve css by using flex-basis: auto and width
  • Loading branch information
artzhookov authored Jul 26, 2024
commit 0ee7529446cdc6e9fd39f9746cb2fb2966cc898d
4 changes: 2 additions & 2 deletions packages/feedback/src/modal/components/Dialog.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const FORM = `
}

.form__right {
flex: 0 0 var(--form-width, 272px);
flex: 0 0 auto;
width: var(--form-width, 272px);
display: flex;
overflow: auto;
Expand All @@ -111,7 +111,7 @@ const FORM = `

@media (max-width: 600px) {
.form__right {
--form-width: 100%;
width: var(--form-width, 100%);
}
}

Expand Down