2019-09-16 12:22:30 +02:00
|
|
|
/*
|
|
|
|
|
This styles apply to custom texts defined in
|
|
|
|
|
/app/javascript/components/shared/CustomTexts.tsx
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.titleText {
|
|
|
|
|
@extend
|
|
|
|
|
.font-weight-bolder;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-19 16:42:43 +02:00
|
|
|
.centeredText {
|
2019-09-16 12:22:30 +02:00
|
|
|
@extend
|
2019-09-19 16:42:43 +02:00
|
|
|
.text-center,
|
|
|
|
|
.p-2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mutedText {
|
|
|
|
|
color: $muted-text-color;
|
2019-09-16 12:22:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.uppercaseText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-secondary,
|
|
|
|
|
.text-uppercase,
|
2019-09-27 11:40:33 +02:00
|
|
|
.font-weight-light;
|
2019-09-19 16:42:43 +02:00
|
|
|
|
|
|
|
|
font-size: 13px;
|
2019-09-16 12:22:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.successText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-success,
|
|
|
|
|
.text-center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dangerText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-danger,
|
|
|
|
|
.text-center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.descriptionText {
|
|
|
|
|
@extend
|
|
|
|
|
.text-muted;
|
|
|
|
|
}
|