diff --git a/frontend/src/components/base/Expandable.vue b/frontend/src/components/base/Expandable.vue index e8426ab35..0cae6e499 100644 --- a/frontend/src/components/base/Expandable.vue +++ b/frontend/src/components/base/Expandable.vue @@ -170,7 +170,7 @@ $ease-in-out-quint: cubic-bezier(0.83, 0, 0.17, 1); position: absolute; height: 40px; width: 100%; - bottom: 0; + inset-block-end: 0; } } diff --git a/frontend/src/components/home/AddToHomeScreen.vue b/frontend/src/components/home/AddToHomeScreen.vue index 2a5239c45..c73cb6b3a 100644 --- a/frontend/src/components/home/AddToHomeScreen.vue +++ b/frontend/src/components/home/AddToHomeScreen.vue @@ -51,7 +51,7 @@ const shouldShowMessage = computed(() => { // at least define it centrally // the highest z-index of a modal is .hint-modal with 4500 z-index: 5000; - bottom: 1rem; + inset-block-end: 1rem; inset-inline: 1rem; max-width: max-content; margin-inline: auto; @@ -75,7 +75,7 @@ const shouldShowMessage = computed(() => { } &.has-update-available { - bottom: 5rem; + inset-block-end: 5rem; } } diff --git a/frontend/src/components/home/ContentAuth.vue b/frontend/src/components/home/ContentAuth.vue index 0840d1bcf..f2fb2fca5 100644 --- a/frontend/src/components/home/ContentAuth.vue +++ b/frontend/src/components/home/ContentAuth.vue @@ -207,7 +207,7 @@ projectStore.loadAllProjects() display: none; position: fixed; inset-block-start: 0; - bottom: 0; + inset-block-end: 0; inset-inline-start: 0; inset-inline-end: 0; height: 100vh; @@ -225,7 +225,7 @@ projectStore.loadAllProjects() .keyboard-shortcuts-button { position: fixed; - bottom: calc(1rem - 4px); + inset-block-end: calc(1rem - 4px); inset-inline-end: 1rem; z-index: 4500; // The modal has a z-index of 4000 diff --git a/frontend/src/components/home/DemoMode.vue b/frontend/src/components/home/DemoMode.vue index b20c2a581..b8ab9139e 100644 --- a/frontend/src/components/home/DemoMode.vue +++ b/frontend/src/components/home/DemoMode.vue @@ -29,7 +29,7 @@ const enabled = computed(() => configStore.demoModeEnabled && !hide.value)