2025-05-15 10:42:39 +08:00
|
|
|
|
// 不再需要导入custom-theme.scss,因为已经在index.scss中统一导入了
|
|
|
|
|
// @import 'custom-theme.scss';
|
|
|
|
|
|
|
|
|
|
// 导入变量
|
|
|
|
|
@import './variables';
|
2025-05-09 09:22:14 +08:00
|
|
|
|
|
|
|
|
|
.breadcrumb {
|
2025-05-10 02:14:03 +08:00
|
|
|
|
font-weight: 700;
|
2025-05-09 09:22:14 +08:00
|
|
|
|
a {
|
|
|
|
|
color: var(--bs-body-color) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-05-10 02:14:03 +08:00
|
|
|
|
|
|
|
|
|
.function-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row wrap;
|
2025-05-12 08:30:02 +08:00
|
|
|
|
align-items: center;
|
2025-05-10 02:14:03 +08:00
|
|
|
|
gap: 1rem;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
float: right;
|
2025-05-12 08:30:02 +08:00
|
|
|
|
button {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
}
|
2025-05-10 02:14:03 +08:00
|
|
|
|
}
|
2025-05-16 09:22:08 +08:00
|
|
|
|
|
|
|
|
|
.back-button {
|
|
|
|
|
cursor: pointer;
|
2025-05-21 22:49:54 +08:00
|
|
|
|
}
|
|
|
|
|
.btn {
|
|
|
|
|
display: inline-flex !important;
|
|
|
|
|
align-items: center;
|
2025-05-16 09:22:08 +08:00
|
|
|
|
}
|