Project Commons
The goal of the project file is to contain the CSS commons for the project, including variables, component variants and shared classes.
In the following code, you can see a project with:
- 2 color, 2 font and 1 spacing size variables
- 1
Button
component variant namedcancelButton
- 1 shared class for
emphasisBox
project.st.css
:vars {
color1: #f012be;
color2: #ff4136;
fontbig: 2rem;
fontsmall: 1rem;
spacing: 6px;
}
@st-import Button from "./button/button.st.css";
.cancelButton {
-st-extends: Button;
}
.emphasisBox {}
tip
We recommend calling the project commons file project.st.css
.