index.wxss 430 B

123456789101112131415161718192021222324
  1. /* components/detail-table/index.wxss */
  2. .sg-row {
  3. display: flex;
  4. align-items: center;
  5. }
  6. .sg-light-gray-bg {
  7. background: #f0f0f0;
  8. }
  9. .sg-cell {
  10. width: 150rpx;
  11. height: 50rpx;
  12. border: 1px solid #f0f0f0;
  13. font-size: 0.8rem;
  14. line-height: 50rpx;
  15. text-align: center;
  16. overflow: hidden;
  17. }
  18. .sg-box {
  19. /* display: flex;
  20. align-items: center;
  21. justify-content: center; */
  22. display: inline-block;
  23. padding-top: 50rpx;
  24. }