h5.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .transfer-h5 {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. &-header {
  7. position: relative;
  8. display: flex;
  9. justify-content: center;
  10. font-size: 18Px;
  11. padding: 16Px 18Px;
  12. .icon {
  13. position: absolute;
  14. left: 18Px;
  15. top: 18Px;
  16. }
  17. }
  18. .main {
  19. flex: 1;
  20. flex-direction: column;
  21. width: auto;
  22. height: auto;
  23. border-radius: 0;
  24. border: none;
  25. box-shadow: none;
  26. max-height: calc(100% - 54Px);
  27. padding: 0;
  28. .avatar {
  29. border-radius: 0;
  30. }
  31. .left {
  32. padding: 0;
  33. flex: 1;
  34. border: none;
  35. display: flex;
  36. flex-direction: column;
  37. header {
  38. position: sticky;
  39. top: 0;
  40. padding: 0 18Px;
  41. input {
  42. border-radius: 5Px;
  43. font-size: 14Px;
  44. }
  45. }
  46. .list {
  47. padding: 0 18Px;
  48. }
  49. }
  50. .right {
  51. flex: 0;
  52. padding: 0;
  53. flex-direction: row;
  54. align-items: center;
  55. box-shadow: inset 0 1Px 0 0 #eeeeee;
  56. padding: 0 18Px 8Px;
  57. .list {
  58. flex-direction: row;
  59. width: 0;
  60. }
  61. footer {
  62. padding: 6Px 0;
  63. display: flex;
  64. align-items: center;
  65. .btn {
  66. font-size: 14Px;
  67. }
  68. }
  69. }
  70. }
  71. }