diff --git a/index.html b/index.html index 03fa8d85..b8fc5b90 100644 --- a/index.html +++ b/index.html @@ -25,11 +25,12 @@ align-items: center; } .first-screen-loading-spinner { - width: 36px; - height: 36px; + width: 42px; + height: 42px; border: 3px solid #d14424; border-top-color: transparent; border-radius: 50%; + box-sizing: border-box; animation: spinner .8s linear infinite; } .first-screen-loading-text { diff --git a/src/App.vue b/src/App.vue index 49e687b2..2bd02032 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,6 +4,7 @@ + @@ -21,6 +22,7 @@ import api from '@/services' import Editor from './views/Editor/index.vue' import Screen from './views/Screen/index.vue' import Mobile from './views/Mobile/index.vue' +import Loading from './components/Loading.vue' const _isPC = isPC() diff --git a/src/components/Loading.vue b/src/components/Loading.vue new file mode 100644 index 00000000..0d91d468 --- /dev/null +++ b/src/components/Loading.vue @@ -0,0 +1,51 @@ + + + + + \ No newline at end of file