54 lines
851 B
SCSS
54 lines
851 B
SCSS
.tray {
|
|
background-color: $white;
|
|
padding: 10px 24px;
|
|
|
|
.livestream__actions {
|
|
&__button {
|
|
border: 2px solid $gray5;
|
|
width: 54px !important;
|
|
height: 54px !important;
|
|
|
|
svg {
|
|
width: 28px !important;
|
|
height: 28px !important;
|
|
}
|
|
|
|
&.active {
|
|
background-color: $primary;
|
|
}
|
|
}
|
|
|
|
&__tag {
|
|
height: 22px;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
border: none;
|
|
align-items: flex-end;
|
|
|
|
span {
|
|
line-height: 20px;
|
|
height: 20px;
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ant-btn.btn-share-screen {
|
|
width: auto !important;
|
|
border: none !important;
|
|
height: 100% !important;
|
|
|
|
svg * {
|
|
stroke: $default;
|
|
}
|
|
|
|
&.ant-btn-red {
|
|
border: none !important;
|
|
|
|
svg * {
|
|
stroke: $red;
|
|
}
|
|
}
|
|
}
|
|
}
|