mirror of
https://github.com/astuto/astuto.git
synced 2025-12-14 18:57:51 +01:00
66 lines
798 B
SCSS
66 lines
798 B
SCSS
/*
|
|
This styles apply to custom texts defined in
|
|
/app/javascript/components/shared/CustomTexts.tsx
|
|
*/
|
|
|
|
.titleText {
|
|
@extend
|
|
.font-weight-bolder;
|
|
}
|
|
|
|
.boxTitleText {
|
|
@extend
|
|
.font-weight-bolder,
|
|
.text-uppercase,
|
|
.mb-2;
|
|
|
|
font-size: 16px;
|
|
}
|
|
|
|
.centeredText {
|
|
@extend
|
|
.text-center,
|
|
.p-2;
|
|
}
|
|
|
|
.mutedText {
|
|
color: var(--astuto-grey);
|
|
}
|
|
|
|
.smallMutedText {
|
|
@extend
|
|
.mutedText,
|
|
.mt-1,
|
|
.mb-0;
|
|
|
|
font-size: smaller;
|
|
}
|
|
|
|
.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;
|
|
|
|
max-height: 48px;
|
|
overflow-y: hidden;
|
|
} |