mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-22 01:16:36 +08:00
框架重构
清除多余的业务
This commit is contained in:
16
WebFirst/wwwroot/vendors/bootstrap/scss/mixins/_transition.scss
vendored
Normal file
16
WebFirst/wwwroot/vendors/bootstrap/scss/mixins/_transition.scss
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
// stylelint-disable property-blacklist
|
||||
@mixin transition($transition...) {
|
||||
@if $enable-transitions {
|
||||
@if length($transition) == 0 {
|
||||
transition: $transition-base;
|
||||
} @else {
|
||||
transition: $transition;
|
||||
}
|
||||
}
|
||||
|
||||
@if $enable-prefers-reduced-motion-media-query {
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user