diff --git a/front/dist/resources/objects/arrow_up.png b/front/dist/resources/objects/arrow_up.png
index 6e948ae2..28c15bc2 100644
Binary files a/front/dist/resources/objects/arrow_up.png and b/front/dist/resources/objects/arrow_up.png differ
diff --git a/front/dist/resources/objects/arrow_up_black.png b/front/dist/resources/objects/arrow_up_black.png
new file mode 100644
index 00000000..c0a732cc
Binary files /dev/null and b/front/dist/resources/objects/arrow_up_black.png differ
diff --git a/front/src/Components/CustomCharacterScene/CustomCharacterScene.svelte b/front/src/Components/CustomCharacterScene/CustomCharacterScene.svelte
index 954dab43..25f8ac93 100644
--- a/front/src/Components/CustomCharacterScene/CustomCharacterScene.svelte
+++ b/front/src/Components/CustomCharacterScene/CustomCharacterScene.svelte
@@ -48,7 +48,7 @@
{/if}
{#if activeRow !== 0}
-
+
{/if}
{#if activeRow === 5}
diff --git a/front/src/Enum/EnvironmentVariable.ts b/front/src/Enum/EnvironmentVariable.ts
index 73f6427c..91e75187 100644
--- a/front/src/Enum/EnvironmentVariable.ts
+++ b/front/src/Enum/EnvironmentVariable.ts
@@ -16,7 +16,7 @@ export const MAX_USERNAME_LENGTH = parseInt(process.env.MAX_USERNAME_LENGTH || '
export const MAX_PER_GROUP = parseInt(process.env.MAX_PER_GROUP || '4');
export const DISPLAY_TERMS_OF_USE = process.env.DISPLAY_TERMS_OF_USE == 'true';
-export const isMobile = ():boolean => ( ( window.innerWidth <= 800 ) || ( window.innerHeight <= 600 ) );
+export const isMobile = ():boolean => false;//( ( window.innerWidth <= 800 ) || ( window.innerHeight <= 600 ) );
export {
DEBUG_MODE,