Component theme style with only one line below the text

Is there anyone who has developed any theme that looks like as follows or any thoughts?

26%20AM

Hello @mortozakhan

It can be easily managed with custom theme and the following SCSS rules:

.v-textfield,
.v-textfield:focus,
.v-filterselect [class*="input"],
.v-filterselect [class*="input"]:focus,
.v-button.c-pickerfield-button,
.v-textfield.c-pickerfield-text,
.v-textfield.c-pickerfield-text:focus {
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

.v-filterselect [class$="button"] {
  border-left: 0;
}

As a result you will have something like this:

image

Regards,
Daniil