Skip to content
Open
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: 0 additions & 4 deletions src/components/Pricing/PricingAddons/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,6 @@ export const PricingAddons = ({ isYearly = false, setIsYearly, currency, enterpr
value={selectedAddon?.id || ""}
onChange={(e) => handleAddonChange(e.target.value)}
label="Optionally, choose one or more add-ons"
MenuProps={{
disableScrollLock: true,
disablePortal: true,
}}
>
{addOns.map((addon) => (
<MenuItem key={addon.id} value={addon.id}>
Expand Down
11 changes: 9 additions & 2 deletions src/sections/app.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ body,html {
overflow-x: hidden;
}

/* When MUI opens a dropdown/modal, it injects overflow:hidden on <body> via inline style.
Because body has overflow:clip, <html> is the actual scroll container. This rule
synchronizes the lock — when MUI locks body, we also lock html to prevent scrolling. */
html:has(body[style*="overflow: hidden"]) {
overflow: hidden;
Comment on lines +63 to +64
Copy link
Contributor Author

Choose a reason for hiding this comment

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

}

body {
font-size: 1.125rem;
overflow: clip;
Expand Down Expand Up @@ -182,8 +189,8 @@ section{
// styling for the searchbox
.search-box {
input {
background-color: ${props => props.theme.shadowDarkColor}!important;
color: ${props => props.theme.text};
background-color: ${(props) => props.theme.shadowDarkColor}!important;
color: ${(props) => props.theme.text};
transition: all 450ms ease 0s;

&:focus {
Expand Down
Loading