Hey there, I'm currently working on code to print the page in my Vue web application. I want to have a static header appear on every page, either by using CSS or JavaScript. I've created a header div component and set its position as fixed. It's showing up on all pages, but unfortunately, the content of the body is being cut off halfway.
In the header section, I really need to display a logo and the current timestamp.
Here is the basic structure of the code:
<div class="header">
<div class="logo"></div>
<div class="timestamp"></div>
</div>