We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Toggling bodyPadding prop does not disable body padding IF AND ONLY IF headerPadding is disabled
The text was updated successfully, but these errors were encountered:
Looks like a SASS bug.
https://github.com/EightfoldAI/octuple/blob/main/src/components/Panel/panel.module.scss#L113-L137
&.no-body-padding { padding: 0; .header { padding: $space-l $space-xl $space-m $space-xl; // BUG? } .footer { padding: $space-m $space-xl $space-l $space-xl; // BUG? } } &.no-header-padding { padding: 0; .header { padding: 0; } .body { padding: 0 $space-xl; // BUG } .footer { padding: $space-m $space-xl $space-l $space-xl; // BUG? } }
Sorry, something went wrong.
Tracking with ENG-46504
dkilgore-eightfold
No branches or pull requests
Toggling bodyPadding prop does not disable body padding IF AND ONLY IF headerPadding is disabled
The text was updated successfully, but these errors were encountered: