App_20220531170040.vue 546 B

1234567891011121314151617181920212223242526272829303132
  1. <!--
  2. * @LastEditors: gcz
  3. -->
  4. <template>
  5. <div id="app">
  6. <router-view/>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'App'
  12. }
  13. </script>
  14. <style lang='scss'>
  15. @import url(../static/css/flex.scss);
  16. #app {
  17. position: relative;
  18. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. text-align: center;
  22. color: #fff;
  23. }
  24. .blur-wrap{
  25. backdrop-filter: blur(6px);
  26. height: calc( 100vh - var(--header-height) - 24px );
  27. @include mbg(0.3);
  28. }
  29. </style>