user-record.scss 778 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import '../../../../themes/page.scss';
  2. /* module/user/pages/user-record/user-record.wxss */
  3. .wrapper {
  4. display: flex;
  5. $border: 1px solid #34FFC6;
  6. &.portrait {
  7. flex-direction: row;
  8. flex-wrap: nowrap;
  9. border-top: $border;
  10. border-bottom: $border;
  11. .header {
  12. flex: none;
  13. border-right: $border;
  14. .row {
  15. width: 90px;
  16. }
  17. }
  18. .scrollable {
  19. flex: auto;
  20. }
  21. .row {
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. width: 120px;
  26. padding: 4px;
  27. box-sizing: border-box;
  28. &.odd {
  29. background-color: #113B38;
  30. }
  31. }
  32. .col {
  33. font-size: 14px;
  34. }
  35. .col+.col {
  36. border-left: $border;
  37. }
  38. }
  39. }
  40. .highlight {
  41. color: #FD3F3F;
  42. }