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
Shadows and fills can be used to show elevation. Our initial approach is to limit the number of shadows and provide the following semantic meaning:
Overlay = Any element that goes over content. Raised = Any element that rests directly on the background / base or a sunken fill.
We should add 2 new global level variables for each of the new drop shadow styles:
--drop-shadow-overlay: 0 8px 8px -4px rgba(0, 0, 0, 0.04), 0 20px 24px -4px rgba(51, 51, 51, 0.08); --drop-shadow-raised: 0 2px 4px -2px rgba(51, 51, 51, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
All of the below components should inherit from --drop-shadow-overlay:
--drop-shadow-overlay
All of the below components should inherit from --drop-shadow-raised:
--drop-shadow-raised
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Shadows and fills can be used to show elevation. Our initial approach is to limit the number of shadows and provide the following semantic meaning:
Overlay = Any element that goes over content.
Raised = Any element that rests directly on the background / base or a sunken fill.
We should add 2 new global level variables for each of the new drop shadow styles:
Overlay
All of the below components should inherit from
--drop-shadow-overlay
:Raised
All of the below components should inherit from
--drop-shadow-raised
:The text was updated successfully, but these errors were encountered: