Skip to content
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

Fix: issue while scroll search list #194

Merged
merged 8 commits into from
Apr 6, 2024
3 changes: 3 additions & 0 deletions packages/web-shared/components/Modal/Modal.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ const slideOut = keyframes`
const Modal = withTheme(styled.div`
width: 100%;
height: 100%;
@media screen and (max-width: ${themeGet('breakpoints.sm')}) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very nice! much better then in .css

height: 100vh;
}
position: fixed;
bottom: 0;
top: 0;
Expand Down
1 change: 1 addition & 0 deletions web-embeds/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@
.apollos-widget input:focus-visible {
outline: none;
}

Loading