_text.scss 436 B

12345678910111213141516171819202122232425
  1. body {
  2. font-size: 16px;
  3. }
  4. .text-xs {
  5. font-size: $font-size-xs;
  6. }
  7. .es-category-item__all {
  8. color: #777;
  9. &.active {
  10. color: #000;
  11. }
  12. }
  13. .webform-component-fixed-value {
  14. @extend .text-muted;
  15. }
  16. .webform-component-fixed-value::after {
  17. content: ""; /* This is necessary for the pseudo element to work. */
  18. display: block; /* This will put the pseudo element on its own line. */
  19. border-bottom: 20px solid transparent;
  20. }