I'm setting up a website with angular2 and css. In a view, have 1 grid and I need to add in the bottom of the screen a panel of actions that is always fixed below (it has to be responsive). I did that with this code:
<div style="position: fixed; bottom: 0px; width: 100%; height: 60px; background-color: black;">
Panel de Acciones
</div>
Now ... with that, when I scroll in the grid, everything goes well and the grid "always goes under" as I need it. The problem is when it reaches the bottom, that the footer of the page is mixed with the fixed panel ... I would need that when this happens, the panel will raise X pixels (those that occupy the footer) so that the panel is left and the footer below. Can any clue give me ??? Thanks