123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .itemContent {
- padding: 16px;
- display: flex;
- color: var(--live-color);
- & > img {
- width: 28px;
- height: 28px;
- margin-right: 8px;
- }
- }
- .itemInfo {
- width: 100%;
- }
- .itemName {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-top: 3px;
- padding-bottom: 8px;
- .userName {
- font-size: 16px;
- line-height: 22px;
- display: flex;
- align-items: center;
- }
- .rightTime {
- font-size: 12px;
- }
- :global {
- .el-tag--default {
- border-radius: 20px;
- margin-left: 8px;
- padding: 0 12px;
- height: 20px;
- line-height: 20px;
- color: var(--live-color);
- background: var(--message-color);
- border-color: var(--message-color);
- }
- }
- }
- .itemText {
- font-size: 14px;
- line-height: 20px;
- &.active {
- color: #00D6C9;
- }
- }
- .joinText {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .join {
- display: flex;
- align-items: center;
- }
- .btn {
- font-size: 13px;
- line-height: 20px;
- background-color: var(--live-light-color);
- text-align: center;
- padding: 3px 15px 1px;
- border-radius: 2px;
- cursor: pointer;
- }
- }
- .loadingStyle {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
|