You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
865 B
SCSS
42 lines
865 B
SCSS
// assets/css/element-overrides.scss
|
|
.el-message-box {
|
|
border-radius: 10px;
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
|
|
|
|
&__header {
|
|
padding: 20px 20px 10px;
|
|
border-bottom: none;
|
|
|
|
.el-message-box__title {
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
padding: 20px;
|
|
}
|
|
|
|
&__btns {
|
|
padding: 10px 20px 20px;
|
|
justify-content: flex-end;
|
|
|
|
.el-button {
|
|
border-radius: 6px;
|
|
padding: 8px 18px;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
|
|
&--primary {
|
|
background: linear-gradient(to right, #409eff, #52aaff);
|
|
border: none;
|
|
|
|
&:hover {
|
|
background: linear-gradient(to right, #52aaff, #66b3ff);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(64, 158, 255, 0.3);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |