mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
* It is now possible to follow a post in order to receive updates about it * Notifications are now sent when updates are published * Post status changes are now tracked * Update sidebar now shows the post status history * Mark a comment as a post update using the comment form * ... more ...
63 lines
762 B
SCSS
63 lines
762 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: $muted-text-color;
|
|
}
|
|
|
|
.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;
|
|
} |