mirror of
https://github.com/astuto/astuto.git
synced 2026-07-10 12:31:47 +02:00
40 lines
507 B
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;
|
|
} |