Files
astuto/app/assets/stylesheets/common/_custom_texts.scss
Riccardo Graziosi d8cf46c351 Switch from webpacker to (css|js)bundling-rails (#227)
* Install jsbundling-rails, uninstall rails/webpacker
* Remove outdated step from run-tests workflow
* Use cssbundling-rails for CSS
2023-05-19 17:47:01 +02:00

63 lines
757 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: $astuto-grey;
}
.smallMutedText {
@extend
.mutedText,
.m-0;
font-size: smaller;
line-height: 95%;
}
.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;
}