4c2b5c4bd1
Ports variables, colors, fonts, layout, mixins, shadows, screen breakpoints, reset, icons, buttons, common, and overrides. Replaces Angular-specific constructs (::ng-deep, :host, element selectors) with React-compatible equivalents. Uses Google Fonts CDN for Roboto.
38 lines
576 B
SCSS
38 lines
576 B
SCSS
h1 {
|
|
font-family: $font-family;
|
|
font-size: $font-size-xxxl;
|
|
font-weight: $font-regular;
|
|
}
|
|
|
|
h2 {
|
|
font-family: $font-family;
|
|
font-size: $font-size-xxl;
|
|
font-weight: $font-regular;
|
|
}
|
|
|
|
h3 {
|
|
font-family: $font-family;
|
|
font-size: $font-size-xl;
|
|
font-weight: $font-bold;
|
|
}
|
|
|
|
h4 {
|
|
font-family: $font-family;
|
|
font-size: $font-size-l;
|
|
font-weight: $font-regular;
|
|
}
|
|
|
|
h5 {
|
|
font-family: $font-family;
|
|
font-size: $font-size-m;
|
|
font-weight: $font-regular;
|
|
}
|
|
|
|
.text--white {
|
|
color: $white;
|
|
}
|
|
|
|
.embolded {
|
|
font-weight: 500;
|
|
}
|