42 lines
721 B
SCSS
42 lines
721 B
SCSS
@import '../../styles/abstracts/variables';
|
|
|
|
.podcast-item {
|
|
padding: 16px;
|
|
border: 1px solid $grey2;
|
|
border-radius: 8px;
|
|
background: $white;
|
|
input {
|
|
height: 48px;
|
|
font-weight: $semi-bold;
|
|
font-size: $medium1;
|
|
&::placeholder {
|
|
font-weight: $regular;
|
|
}
|
|
}
|
|
&--left {
|
|
flex: 1 1 auto;
|
|
max-width: calc(100% - 54px);
|
|
}
|
|
.ant-form-item {
|
|
margin-bottom: 0;
|
|
}
|
|
.alert-error {
|
|
background: #ffeaee;
|
|
border-radius: 8px;
|
|
border: none;
|
|
padding: 8px 12px;
|
|
.ant-alert-icon {
|
|
margin-right: 12px;
|
|
}
|
|
.ant-alert-description {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.module-list__item--dragging {
|
|
.music-item {
|
|
box-shadow: $boxShadow2 !important;
|
|
}
|
|
}
|