Enhance styling consistency with Docusaurus/Infima CSS variables #74
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the CSS files to improve the consistency and maintainability of the styling by using CSS variables from Docusaurus/Infima. This pull request is based on
feature/storage-finder
, because #73 introduced changes that sorted CSS property declarations.Improvements to styling consistency:
src/components/HomepageFeatures/styles.module.css
: Updated the padding to usevar(--ifm-spacing-vertical)
andvar(--ifm-spacing-horizontal)
for consistent spacing.src/components/HomepageFeatures/styles.module.css
: Changed the border-radius to usevar(--ifm-global-radius)
for a consistent border radius.src/components/HomepageFeatures/styles.module.css
: Updated the background-color and added a transition effect usingvar(--ifm-hover-overlay)
,var(--ifm-transition-fast)
, andvar(--ifm-transition-timing-default)
for a consistent hover effect.src/pages/index.module.css
: Updated the padding in the.heroBanner
class to usevar(--ifm-spacing-vertical)
andvar(--ifm-spacing-horizontal)
for consistent spacing.