| 123456789101112131415161718192021222324252627282930 |
- .region {
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- align-content: center;
- &__img {
- margin: 0 10px;
- width: 33px;
- height: 33px;
- border-radius: 50%;
- }
- &__link {
- color: #ffffff;
- display: -webkit-flex;
- display: -ms-flex;
- display: flex;
- flex-direction: row;
- &:hover {
- text-decoration: none;
- }
- }
- &__name {
- @extend .region;
- }
- }
|