Files
astuto/app/javascript/stylesheets/general/_custom_texts.scss

40 lines
507 B
SCSS

/*
This styles apply to custom texts defined in
/app/javascript/components/shared/CustomTexts.tsx
*/
.titleText {
@extend
.text-dark,
.font-weight-bolder;
}
.mutedText {
@extend
.text-muted,
.text-center;
}
.uppercaseText {
@extend
.text-secondary,
.text-uppercase,
.font-weight-lighter;
}
.successText {
@extend
.text-success,
.text-center;
}
.dangerText {
@extend
.text-danger,
.text-center;
}
.descriptionText {
@extend
.text-muted;
}