picker-item.scss 697 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .lb-picker-column {
  2. height: 34px;
  3. padding: 0 10px;
  4. /* #ifndef APP-NVUE */
  5. display: flex;
  6. box-sizing: border-box;
  7. white-space: nowrap;
  8. overflow: hidden;
  9. /* #endif */
  10. flex-direction: row;
  11. align-items: center;
  12. }
  13. .lb-picker-column-label {
  14. font-size: 16px;
  15. text-align: center;
  16. flex: 1;
  17. /* #ifdef APP-NVUE */
  18. lines: 1;
  19. /* #endif */
  20. text-overflow: ellipsis;
  21. transition-property: color;
  22. transition-duration: 0.3s;
  23. /* #ifndef APP-NVUE */
  24. overflow: hidden;
  25. white-space: nowrap;
  26. /* #endif */
  27. }
  28. .lb-picker-column-label-left {
  29. text-align: left;
  30. }
  31. .lb-picker-column-label-center {
  32. text-align: center;
  33. }
  34. .lb-picker-column-label-right {
  35. text-align: right;
  36. }