I have a gallery with an album-card component inside, and within that is a carousel.
I noticed that when I add a list-group and set one of the items as active, it remains unblurred. Can anyone help me understand why?
Here is the HTML for the gallery component:
<div class="row">
<div class="col-3">
<div class="list-group">
<a
*ngFor="let album of galleryAlbums"
class="list-group-item list-group-item-secondary list-group-item-action
d-flex justify-content-between align-items-center"
routerLink="/gallery"
[queryParams]="{ selectedAlbumId: album.id }"
[class.active]="selectedAlbumId === album.id">
{{ album.name }}
<span class="badge badge-warning badge-pill">{{ album.photos.length}}</span>
</a>
</div>
</div>
<album-card class="col-9" *ngIf="selectedAlbum" [album]="selectedAlbum"></album-card>
</div>
The carousel styles are defined in the .scss file:
.gallery-carousel {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background-color: rgba(100, 100, 100, 0.4);
backdrop-filter: blur(5px);
Here is the result screenshot: