Slider handle

Hi,
is it possible to change the Slider handle style? The default one is rounded, when changes are little they become imperceptible… I’d like to have a small and tight handle.

Edit:

Solution: adding these lines at bottom of scss:

.v-slider-handle:before, .v-slider-handle:after {
    content: "";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    width: 12px;
    height: 40px;
    border-radius: 11px;
    position: absolute;
    z-index: 1;
    margin-top: 8px;
    margin-left: 0px;
}