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 */
@namespace "Project";
:vars {
color1: #F012BE;
color2: #FF4136;
fontBig: 2rem;
fontSmall: 1rem;
spacing: 6px;
}
:import {
-st-from: './button/button.st.css';
-st-default: Button;
}
.cancelButton {
-st-extends: Button;
}
.emphasisBox {}
Note: We recommend calling the project commons file
project.st.css
.