A small but effective change in the search bar

The Invidious search section in the navbar on webOS TVs (at least what I saw on LG) when the browser search bar opens It is completely covered and difficult to access
This commit is contained in:
Hamid Ahmadi 2024-07-30 11:06:47 +03:30 committed by GitHub
parent 90e94d4e6c
commit dfe948f609
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -260,6 +260,20 @@ div.thumbnail > .bottom-right-overlay {
align-items: center;
justify-content: space-between;
}
@media screen and (min-width: 767px) {
.navbar {
top:0;
position:sticky;
z-index: 10;
width: calc(100% - 42px);
margin: 0;
padding: 12px 20px;
background:white;
}
.dark-theme .navbar{
background: #232323;
}
}
.navbar > div {
flex: 1;