diff --git a/gui_vue/electron/preload/index.ts b/gui_vue/electron/preload/index.ts index 57adf56c..2555701d 100644 --- a/gui_vue/electron/preload/index.ts +++ b/gui_vue/electron/preload/index.ts @@ -37,24 +37,24 @@ function useLoading() { @keyframes square-spin { 0% { transform: rotate(0deg); - background-image: url('/icon_cube_border.png'); /* Replace with the URL of your image */ + background-image: url('icon_cube_border.png'); /* Replace with the URL of your image */ background-size: cover; /* Scale the image to cover the entire container */ } 25% { transform: perspective(100px) rotateX(180deg) rotateY(0); - background-image: url('/icon_cube_border.png'); /* Replace with the URL of your image */ + background-image: url('icon_cube_border.png'); /* Replace with the URL of your image */ background-size: cover; /* Scale the image to cover the entire container */ } 50% { transform: perspective(100px) rotateX(180deg) rotateY(180deg); - background-image: url('/icon_cube_border.png'); /* Replace with the URL of your image */ + background-image: url('icon_cube_border.png'); /* Replace with the URL of your image */ background-size: cover; /* Scale the image to cover the entire container */ } 75% { transform: perspective(100px) rotateX(0) rotateY(180deg); - background-image: url('/icon_cube_border.png'); /* Replace with the URL of your image */ + background-image: url('icon_cube_border.png'); /* Replace with the URL of your image */ background-size: cover; /* Scale the image to cover the entire container */ } 100% { transform: perspective(100px) rotateX(0) rotateY(0); - background-image: url('/icon_cube_border.png'); /* Replace with the URL of your image */ + background-image: url('icon_cube_border.png'); /* Replace with the URL of your image */ background-size: cover; /* Scale the image to cover the entire container */ } }