Skip to content

Commit

Permalink
Merge pull request #45 from htmltiger/htmltiger-patch-1
Browse files Browse the repository at this point in the history
Make top bar sticky
  • Loading branch information
htmltiger authored Oct 7, 2022
2 parents eef0059 + 20d2b19 commit e670c20
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions config-editor-card.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
console.info("Config Editor 4.2");
console.info("Config Editor 4.3");
const LitElement = window.LitElement || Object.getPrototypeOf(customElements.get("hui-masonry-view") );
const html = LitElement.prototype.html;
const css = LitElement.prototype.css;
Expand Down Expand Up @@ -45,9 +45,14 @@ static get styles() {
.right button{
font-family:Times,serif;
font-weight:bold}
.bar{
.pin,.bar{
position:-webkit-sticky;
position:sticky;
z-index:2;}
.pin{
top: var(--header-height, 0);
background:var(--secondary-background-color)}
.bar{
bottom:0;
z-index:2;
background:var(--app-header-background-color);
Expand Down

0 comments on commit e670c20

Please sign in to comment.