Gradients
Vue Bootstrap 5 Gradient component
Bootstrap Vue gradient effect is a linear color progression - a smooth transition between two colors. The gradient effect can be used in a variety of components.
To learn more read Docs.
Bootstrap Vue gradient effect is a linear color progression - a smooth transition between two colors. The gradient effect can be used in a variety of components.
To learn more read Docs.
<template>
<MDBContainer>
<button class="btn btn-block gradient-custom">
Gradient
</button>
</MDBContainer>
</template>
<style>
.gradient-custom {
background: #667eea;
background: -webkit-linear-gradient(to right, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
background: linear-gradient(to right, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5))
}
</style>
Log in to your account or purchase an MDB5 PRO subscription if you don't have one.
Login Buy MDB Pro