region.scss 565 B

123456789101112131415161718192021222324252627282930
  1. .region {
  2. display: -webkit-flex;
  3. display: -ms-flex;
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: center;
  7. align-items: center;
  8. align-content: center;
  9. &__img {
  10. margin: 0 10px;
  11. width: 33px;
  12. height: 33px;
  13. border-radius: 50%;
  14. }
  15. &__link {
  16. color: #ffffff;
  17. display: -webkit-flex;
  18. display: -ms-flex;
  19. display: flex;
  20. flex-direction: row;
  21. &:hover {
  22. text-decoration: none;
  23. }
  24. }
  25. &__name {
  26. @extend .region;
  27. }
  28. }