'angular material filter button always on the bottom right corner

I want to implement a filter button on a result page like this one: enter image description here

Is there any angular directive that implement this.

Like for example the snack bar that is positioned always on the bottom of the screen?



Solution 1:[1]

Following CSS works fine.

.fab-button {
position: fixed;
bottom: 30px;
right: 50px;
}

If you're using angular material then the following can be added in the template HTML.

<button mat-fab color="primary" class="fab-button" aria-label="Add icon">
  <mat-icon>add</mat-icon>
</button>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Selvam Raju