fix(api): use bcrypt directly instead of passlib for compatibility

This commit is contained in:
bwstudio
2026-05-21 22:18:36 +08:00
parent 7f51d200f1
commit 4651781bc3
23511 changed files with 2587254 additions and 8 deletions
+44
View File
@@ -0,0 +1,44 @@
@use 'mixins/mixins' as *;
@use 'mixins/var' as *;
@use 'common/var' as *;
@include b(skeleton) {
@include set-component-css-var('skeleton', $skeleton);
}
@mixin skeleton-color() {
background: linear-gradient(
90deg,
getCssVar('skeleton-color') 25%,
getCssVar('skeleton-to-color') 37%,
getCssVar('skeleton-color') 63%
);
background-size: 400% 100%;
animation: #{$namespace}-skeleton-loading 1.4s ease infinite;
}
@keyframes #{$namespace}-skeleton-loading {
0% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}
@include b(skeleton) {
width: 100%;
@each $unit in (first-line, paragraph) {
@include e($unit) {
height: 16px;
margin-top: 16px;
background: getCssVar('skeleton-color');
}
}
@include when(animated) {
.#{$namespace}-skeleton__item {
@include skeleton-color();
}
}
}