1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .Wall {
- :global {
- .titleTxt {
- padding-left: 15px;
- position: relative;
- z-index: 10;
- font-weight: 700;
- font-size: 16px;
- display: flex;
- align-items: center;
- .inco {
- cursor: pointer;
- margin-left: 10px;
- font-size: 14px;
- color: #7e8293;
- }
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 0;
- width: 5px;
- height: 22px;
- background-color: var(--themeColor2);
- }
- }
- .wallTopBox {
- border-radius: 10px;
- background-color: #fff;
- padding: 15px;
- margin-bottom: 20px;
- .txt {
- height: 60px;
- display: flex;
- align-items: center;
- }
- .edit {
- height: 60px;
- display: flex;
- align-items: center;
- }
- }
- }
- }
|