index.wxss 399 B

1234567891011121314151617181920212223
  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. padding-top: 50rpx;
  23. }