1234567891011121314151617181920212223242526 |
- .message {
- .buttonGroup {
- display: flex;
- align-items: center;
- background: rgba(99, 108, 132, 0.1);
- padding: 15px 16px;
- }
- .btn {
- width: 88px;
- height: 30px;
- line-height: 30px;
- font-size: 14px;
- font-weight: 600;
- background: var(--message-color);
- border-radius: 2px;
- color: var(--live-color);
- text-align: center;
- cursor: pointer;
- & + .btn {
- margin-left: 12px;
- }
- }
- .active {
- background: var(--live-light-color);
- }
- }
|