_header.scss 450 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .header {
  2. display:flex;
  3. &__logo {
  4. width: 20%;
  5. }
  6. &__searchLine{
  7. width: 60%;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. &__auth {
  13. width: 20%;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. &__container{
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. .avatar{
  22. padding-right: 5px;
  23. }
  24. .text{
  25. color: $el-color;
  26. font-size: 18px;
  27. }
  28. }
  29. }
  30. }