Compare commits

..

3 commits

Author SHA1 Message Date
6bac5e2a34 Merge pull request 'Fix bottom app bar position' (#2) from develop into main
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Reviewed-on: #2
2023-05-31 14:41:50 +02:00
9679e45f84 Merge branch 'main' into develop
Some checks failed
ci/woodpecker/pr/build Pipeline failed
2023-05-31 14:41:36 +02:00
506d33a2c8
Fix bottom app bar position
Some checks failed
ci/woodpecker/pr/build Pipeline failed
2023-05-31 14:40:24 +02:00
2 changed files with 1 additions and 2 deletions

View file

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

View file

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