vue-trip
Version:
Vue Trip is a lightweight and customizable plug-in that allows an easy and efficient way to guide your users in your application
35 lines (31 loc) • 606 B
CSS
.v-button {
margin: 2px;
border: none;
outline: none;
cursor: pointer;
font-weight: 400;
line-height: 1.5;
font-size: 0.8rem;
padding: 6px 16px;
position: relative;
white-space: nowrap;
display: inline-block;
text-decoration: none;
transition: all 500ms ease-in-out;
font-family: 'Montserrat', sans-serif;
}
.v-button.square {
border-radius: 0;
}
.v-button.pill {
border-radius: 100px;
}
.v-button.rounded {
border-radius: 4px;
}
.v-button:disabled,
.v-button[disabled=disabled] {
cursor: not-allowed;
color: #666666 ;
background: #dddddd ;
}