uni.scss 595 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .toolbar-item-container-uni {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. position: static;
  9. &-icon {
  10. background: #fff;
  11. border-radius: 15px;
  12. width: 60px;
  13. height: 60px;
  14. padding: 0;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. &-title {
  20. font-size: 14px;
  21. color: #8F959D;
  22. }
  23. &-dialog{
  24. position: absolute !important;
  25. background: transparent;
  26. left: -10px;
  27. bottom: -5px;
  28. .toolbar-bottom-popup{
  29. position: sticky;
  30. }
  31. }
  32. }