21 lines
449 B
CSS
21 lines
449 B
CSS
.custom-sidebar {
|
|
max-width: 300px !important; /* 设置最大宽度为 300px */
|
|
}
|
|
|
|
/* Toast with frosted glass effect */
|
|
.glass-toast {
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
.glass-toast-success {
|
|
background-color: rgba(var(--bs-success-rgb), 0.75) !important;
|
|
}
|
|
|
|
.glass-toast-danger {
|
|
background-color: rgba(var(--bs-danger-rgb), 0.75) !important;
|
|
}
|
|
|
|
.glass-toast-info {
|
|
background-color: rgba(var(--bs-info-rgb), 0.75) !important;
|
|
}
|