You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
241 B

  1. @import "var";
  2. .breads {
  3. .bread {
  4. &:after {
  5. content: "/";
  6. font-weight: bold;
  7. margin: 0 4px 0 7px;
  8. color:@breadColor;
  9. }
  10. }
  11. .bread:last-child {
  12. &:after {
  13. content: "";
  14. margin: 0;
  15. }
  16. }
  17. }