From b35f8811aec9b03fbfc2e86791157598d99c620e Mon Sep 17 00:00:00 2001 From: DJ2LS Date: Sun, 8 Oct 2023 10:37:14 +0200 Subject: [PATCH] fixed preload icon --- gui_vue/electron/preload/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 */ } }