Enable smooth panning between past/live.

This commit is contained in:
Dermot Duffy
2023-04-09 19:23:34 -07:00
parent b3bb56298a
commit e1d74dc35a
26 changed files with 474 additions and 339 deletions
+14
View File
@@ -0,0 +1,14 @@
:host {
width: 100%;
height: 100%;
display: block;
}
:host([hidden]),
.hidden {
// Views content is hidden in these cases:
// - Live view being preloaded but live view not active.
// - Overall views component marked as hidden (e.g. error message to display
// at the card level).
display: none;
}