index.css 543 B

12345678910111213141516171819202122232425
  1. @import '../common/index.css';
  2. .van-dropdown-item {
  3. position: fixed;
  4. right: 0;
  5. left: 0;
  6. overflow: hidden;
  7. }
  8. .van-dropdown-item__option {
  9. text-align: left;
  10. }
  11. .van-dropdown-item__option--active .van-dropdown-item__icon,
  12. .van-dropdown-item__option--active .van-dropdown-item__title {
  13. color: #1989fa;
  14. color: var(--dropdown-menu-option-active-color, #1989fa);
  15. }
  16. .van-dropdown-item--up {
  17. top: 0;
  18. }
  19. .van-dropdown-item--down {
  20. bottom: 0;
  21. }
  22. .van-dropdown-item__icon {
  23. display: block;
  24. line-height: inherit;
  25. }