index.scss 427 B

1234567891011121314151617181920212223242526
  1. .my-work {
  2. padding: 20px 0 20px 12px;
  3. box-sizing: border-box;
  4. height: calc(100vh - 40px);
  5. display: flex;
  6. gap: 20px;
  7. .my-work-slider {
  8. width: 25%;
  9. height: 100% ;
  10. display: flex;
  11. flex-direction: column;
  12. gap: 10px;
  13. flex-shrink: 0;
  14. .back{
  15. text-align: left; /* 文字左对齐 */
  16. width: 70px;
  17. }
  18. }
  19. .my-work-input {
  20. width: 100%;
  21. flex: 1;
  22. max-width: 100%;
  23. }
  24. }