12345678910111213141516171819202122232425262728293031323334353637 |
- .header {
- display:flex;
- &__logo {
- width: 20%;
- }
- &__searchLine{
- width: 60%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- &__auth {
- width: 20%;
- display: flex;
- justify-content: center;
- align-items: center;
-
- &__container{
-
- display: flex;
- justify-content: center;
- align-items: center;
- .avatar{
- padding-right: 5px;
- }
- .text{
- color: $el-color;
- font-size: 18px;
- }
- }
- }
- }
|