fix header
This commit is contained in:
@@ -2,11 +2,27 @@
|
|||||||
import ChatApp from './lib/ChatApp.svelte';
|
import ChatApp from './lib/ChatApp.svelte';
|
||||||
import BackButton from "./lib/BackButton.svelte";
|
import BackButton from "./lib/BackButton.svelte";
|
||||||
import "./assets/app.css"
|
import "./assets/app.css"
|
||||||
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
|
let isKeyboardActive = false;
|
||||||
|
|
||||||
|
function handleResize() {
|
||||||
|
const isVirtualKeyboardActive = window.innerHeight < window.outerHeight;
|
||||||
|
isKeyboardActive = isVirtualKeyboardActive;
|
||||||
|
}
|
||||||
|
|
||||||
|
onMount(() => {
|
||||||
|
window.addEventListener('resize', handleResize);
|
||||||
|
return () => {
|
||||||
|
window.removeEventListener('resize', handleResize);
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<div>
|
<div>
|
||||||
<header id="header"><BackButton /><span id="ramiza-ime">Ramiza</span><span id="threedotsmenu"> ⋮ </span></header>
|
<header id="header" class={isKeyboardActive ? 'sticky-header' : ''}><BackButton /><span id="ramiza-ime">Ramiza</span><span id="threedotsmenu"> ⋮ </span></header>
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<ChatApp />
|
<ChatApp />
|
||||||
@@ -15,5 +31,13 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.sticky-header {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 9999;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -15,6 +15,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#chat-container {
|
#chat-container {
|
||||||
|
padding-top: 2.52rem;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -22,6 +23,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
|
background: white;
|
||||||
/* make header fixed to top when the content bellow starts scrolling */
|
/* make header fixed to top when the content bellow starts scrolling */
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user