I am currently using a <md-progress-bar>
component in my VueJS application, and I am trying to make it stay fixed at the bottom of the screen when I scroll. I have attempted to use the styles position: fixed;
, absolute
, and relative
, but none of them seem to work.
<template>
<div>
...
<md-progress-bar style="position: absolute;" md-mode="indeterminate" v-show="true"></md-progress-bar>
</div>
</template>
In addition...
<md-progress-bar
style="position: fixed;
bottom: 0;
right: 0;
width: 100%;"
md-mode="indeterminate"
v-show="true"
></md-progress-bar>