fakeRegistration.scss 692 B

12345678910111213141516171819202122232425262728
  1. .fake_registration{
  2. padding: 20rpx;
  3. .fake_table_wrap{
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. align-items: flex-start;
  8. gap: 20rpx;
  9. ::v-deep .u-button{
  10. width:auto;
  11. }
  12. .btn_wrap{
  13. display: flex;
  14. gap: 20rpx;
  15. }
  16. .custom-table__body{
  17. height: calc(100vh - 240rpx);
  18. width: -webkit-fill-available;
  19. border-radius: 20rpx;
  20. background-color: #fff;
  21. overflow-y: auto;
  22. ::v-deep .custom-table{
  23. margin:20rpx;
  24. // width: 100%;
  25. }
  26. }
  27. }
  28. }