mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
45 lines
554 B
SCSS
45 lines
554 B
SCSS
/*
|
|
This styles apply to custom texts defined in
|
|
/app/javascript/components/shared/CustomTexts.tsx
|
|
*/
|
|
|
|
.titleText {
|
|
@extend
|
|
.font-weight-bolder;
|
|
}
|
|
|
|
.centeredText {
|
|
@extend
|
|
.text-center,
|
|
.p-2;
|
|
}
|
|
|
|
.mutedText {
|
|
color: $muted-text-color;
|
|
}
|
|
|
|
.uppercaseText {
|
|
@extend
|
|
.text-secondary,
|
|
.text-uppercase,
|
|
.font-weight-light;
|
|
|
|
font-size: 13px;
|
|
}
|
|
|
|
.successText {
|
|
@extend
|
|
.text-success,
|
|
.text-center;
|
|
}
|
|
|
|
.dangerText {
|
|
@extend
|
|
.text-danger,
|
|
.text-center;
|
|
}
|
|
|
|
.descriptionText {
|
|
@extend
|
|
.text-muted;
|
|
} |