reset-text.less 467 B

123456789101112131415161718
  1. .reset-text() {
  2. font-family: @font-family-base;
  3. // We deliberately do NOT reset font-size.
  4. font-style: normal;
  5. font-weight: 400;
  6. line-height: @line-height-base;
  7. line-break: auto;
  8. text-align: left; // Fallback for where `start` is not supported
  9. text-align: start;
  10. text-decoration: none;
  11. text-shadow: none;
  12. text-transform: none;
  13. letter-spacing: normal;
  14. word-break: normal;
  15. word-spacing: normal;
  16. word-wrap: normal;
  17. white-space: normal;
  18. }