text-align.less 409 B

12345678910111213141516171819202122232425262728293031
  1. // Alignment
  2. .text-left {
  3. text-align: left;
  4. }
  5. .text-right {
  6. text-align: right;
  7. }
  8. .text-center {
  9. text-align: center;
  10. }
  11. .text-justify {
  12. text-align: justify;
  13. }
  14. .text-nowrap {
  15. white-space: nowrap;
  16. }
  17. .align-left {
  18. text-align: left;
  19. justify-content: flex-start;
  20. }
  21. .align-center {
  22. text-align: center;
  23. justify-content: center;
  24. }
  25. .align-right {
  26. text-align: right;
  27. justify-content: flex-end;
  28. }