Fix bottom app bar position
Some checks failed
ci/woodpecker/pr/build Pipeline failed

This commit is contained in:
Federico Bologni 2023-05-31 14:40:24 +02:00
parent d9c0ff232e
commit 506d33a2c8
Signed by: zbolo-wd
GPG key ID: DD44ECE4EE4DB604
2 changed files with 1 additions and 2 deletions

View file

@ -11,8 +11,6 @@ const template = `
`; `;
const style = ` const style = `
:host { :host {
position: fixed;
bottom: 20px;
display: flex; display: flex;
height: 42px; height: 42px;
width: 80%; width: 80%;

View file

@ -16,4 +16,5 @@ footer {
display: grid; display: grid;
place-items: center; place-items: center;
width: 100%; width: 100%;
height: calc(42px + 20px + 20px);
} }