Mineral UI is built on a design system with styles ready to go out of the box. We realize however that there will be cases when you need to customize styles for your unique needs. Below are some different techniques for customizing Mineral UI styles across all levels of your application.
Customization Techniques #
Try Theming First #
Theming is a core concept in Mineral UI. It is powerful feature capable of providing style customizations from the application level to the component level and should generally be your first choice when looking to make style customizations. See the theming page for more details.
When a component needs to be customized beyond what theming enables, use these methods, in order of recommendation.
Note
Mineral UI uses Emotion for component styling. This page will detail how its API can apply to Mineral UI components.
styled
#
styled
creates a new styled component based on another component or DOM element.
import styled from '@emotion/styled';
import Button from 'mineral-ui/Button';
const MyButton = styled(Button)({
outline: '3px dashed tomato'
});
as
Prop #
Any component created with styled
(which includes every Mineral UI component) can use the as
prop to change the rendered element or Component.
import Button from 'mineral-ui/Button';
import Link from 'mineral-ui/Link';
<Button as={Link} href="..." />
css
Prop #
The css
prop, available on all Mineral UI components, provides a quick, easy way to directly modify the styles of a component.
import Button from 'mineral-ui/Button';
render(
<Button
css={{
outline: '3px dashed tomato'
}}
/>
);
className
Prop #
Additional CSS classes can be applied to components using the standard React className
prop.
<Button className="myButton" />
You can also use emotion to generate a className
, with the ClassNames component and the css
function it provides.
import { ClassNames } from '@emotion/core';
render(
<ClassNames>
({ css, cx }) => (
<Button className={css({ outline: '3px dashed tomato' })} />
)
</ClassNames>
);
Order of precedence for styles applied via className
Classnames not generated by emotion, e.g. 'myButton'
, will not necessarily take precedence over the styles on the component. Whether it will or not is based on the source order of the styles in the DOM and can be hard to control. Classnames that are generated via ClassNames' css
can be composed in a predictable order with the similarly-provided cx
function, which is emotion's version of the popular classnames utility.
Inline Styles #
Inline styles can be applied to components using the standard React style
prop.
<Button style={{ outline: '3px dashed tomato' }} />