index.scss 536 B

123456789101112131415161718192021222324252627282930313233
  1. .city-bar{
  2. overflow:scroll;
  3. height: 100vh;
  4. }
  5. .city-item{
  6. background: #eee;
  7. .city-value-row{
  8. background: #fff;
  9. &.current-city-value{
  10. height: 50px;
  11. line-height: 50px;
  12. text-align: center;
  13. color: #409EFF;
  14. }
  15. }
  16. .city-value-item{
  17. text-align: center;
  18. height: 50px;
  19. line-height: 50px;
  20. border-bottom:2px solid #eee;
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. &.not-border{
  24. border:2px solid transparent;
  25. }
  26. &.changed{
  27. color: #409EFF;
  28. }
  29. }
  30. }