1
0

index.less 511 B

12345678910111213141516171819202122232425262728293031323334
  1. @import '../../app.less';
  2. .note-detail {
  3. padding-left: 42px;
  4. padding-bottom: 20px;
  5. position: relative;
  6. .note-avatar {
  7. position: absolute;
  8. left: 0;
  9. border-radius: 50%;
  10. width: 32px;
  11. height: 32px;
  12. }
  13. .more {
  14. position: absolute;
  15. right: 0;
  16. }
  17. .reply-action {
  18. position: absolute;
  19. right: 0;
  20. }
  21. .reply {
  22. padding-left: 5px;
  23. border-left: 4px solid #DFDFDF;
  24. margin: 4px;
  25. white-space: nowrap;
  26. text-overflow: ellipsis;
  27. overflow: hidden;
  28. }
  29. }