12345678910111213141516171819202122232425262728293031323334 |
- @import '../../app.less';
- .note-detail {
- padding-left: 42px;
- padding-bottom: 20px;
- position: relative;
- .note-avatar {
- position: absolute;
- left: 0;
- border-radius: 50%;
- width: 32px;
- height: 32px;
- }
- .more {
- position: absolute;
- right: 0;
- }
- .reply-action {
- position: absolute;
- right: 0;
- }
- .reply {
- padding-left: 5px;
- border-left: 4px solid #DFDFDF;
- margin: 4px;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- }
|