Sign in

canrd-outside / order-erp-front · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 1
  • Labels
  • Wiki
  • order-erp-front
  • src
  • design
  • transition
  • scale.less
  • 升级最新依赖 并修复eslint报错 (#2896) ...
    1262e130
    * chore: update deps
    
    * fix: import.meta.globEager 已过期
    
    * docs: fix doc bugs
    
    * fix: eslint
    
    * fix: lint:prettier
    
    * fix: stylelint
    
    * chore: update deps
    
    * fix: eslint
    
    * refactor: accountdetail setup
    
    * fix: 'Nullable' is not defined
    
    * feat: remove vite-plugin-vue-setup-extend
    
    * chore: remove unplugin-vue-define-options
    
    * fix(component): pageWrapper
    
    use setup
    
    closed #2898
    
    * refactor: PageFooter use setup
    
    ---------
    
    Co-authored-by: jinmao88 <50581550+jinmao88@users.noreply.github.com>
    xingyu authored
    2023-07-06 15:00:38 +0800  
    Browse Code »
scale.less 293 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
.scale-transition {
  .transition-default();

  &-enter-from,
  &-leave,
  &-leave-to {
    transform: scale(0);
    opacity: 0;
  }
}

.scale-rotate-transition {
  .transition-default();

  &-enter-from,
  &-leave,
  &-leave-to {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
}