dootask/resources/assets/sass/pages/components/meeting-manager.scss
2022-06-02 00:12:41 +08:00

89 lines
3.4 KiB
SCSS
Vendored

body {
.ivu-modal-wrap {
&.meeting-manager {
.ivu-modal {
.ivu-modal-content {
.ivu-modal-body {
padding: 16px 24px 0;
> ul {
display: grid;
justify-content: space-between;
grid-template-columns: repeat(auto-fill, 220px);
grid-gap: 24px;
> li {
list-style: none;
position: relative;
.meeting-player {
position: relative;
.player {
width: 220px;
height: 220px;;
border-radius: 12px;
position: relative;
z-index: 1;
overflow: hidden;
background-color: #e1e1e1;
background-size: 136%;
background-position: center;
background-repeat: no-repeat
}
.player-state {
position: absolute;
top: 4px;
right: 8px;
z-index: 2;
display: flex;
align-items: center;
.taskfont {
color: #ff0000;
font-size: 18px;
margin-left: 8px;
}
}
.common-avatar {
position: absolute;
bottom: -8px;
right: -8px;
z-index: 2;
}
}
}
@media (max-width: 768px) {
grid-template-columns: repeat(auto-fill, 176px);
grid-gap: 12px;
> li {
.meeting-player {
.player {
width: 176px;
height: 176px;;
}
}
}
}
}
}
}
}
}
}
}
.meeting-button-group {
display: flex;
justify-content: flex-end;
.taskfont {
font-size: 20px;
}
.ivu-btn {
display: flex;
align-items: center;
justify-content: center;
> span {
display: flex;
align-items: center;
justify-content: center;
}
}
}