51 lines
949 B
SCSS
51 lines
949 B
SCSS
.el-form{
|
|
.el-form-item{
|
|
&:nth-last-child(1){
|
|
margin-bottom: 0px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// el 弹框不知道为啥宽度会变大
|
|
.el-popup-parent--hidden {
|
|
overflow: hidden;
|
|
width: 100% !important;
|
|
}
|
|
|
|
|
|
// messagebox 样式
|
|
.is-message-box {
|
|
.el-message-box {
|
|
border-radius: 16px;
|
|
}
|
|
}
|
|
|
|
// rounded-tooltip 提示框样式
|
|
.rounded-tooltip {
|
|
border-radius: 10px !important;
|
|
display: flex;
|
|
align-items: center;
|
|
height: fit-content;
|
|
}
|
|
|
|
.zoom-fade-enter-from {
|
|
transform: scale(0.9); /* 进入前:缩小隐藏 */
|
|
opacity: 0;
|
|
}
|
|
.zoom-fade-enter-active,
|
|
.zoom-fade-leave-active {
|
|
transition: transform 0.3s, opacity 0.3s; /* 缓入动画 */
|
|
}
|
|
.zoom-fade-enter-to {
|
|
transform: scale(1); /* 进入后:正常大小 */
|
|
opacity: 1;
|
|
}
|
|
.zoom-fade-leave-from {
|
|
transform: scale(1); /* 离开前:正常大小 */
|
|
opacity: 1;
|
|
}
|
|
.zoom-fade-leave-to {
|
|
transform: scale(0.9); /* 离开后:缩小隐藏 */
|
|
opacity: 0;
|
|
}
|