This commit is contained in:
Philipp Lang 2023-06-01 11:03:53 +02:00
parent 2e5385b565
commit b2b53c558e
2 changed files with 13 additions and 14 deletions

View File

@ -7,7 +7,6 @@
@apply mb-4;
}
.form-control-font {
@apply leading-tight text-gray-600 text-sm;
}
@ -18,7 +17,8 @@
top: 34px;
transition: color 02s, padding-bottom 02s, font-size 02s, top 02s;
}
.field-wrapperfocused label-placeholder, label-placeholder-focused {
.field-wrapperfocused label-placeholder,
label-placeholder-focused {
top: 0;
@apply text-sm text-gray-600;
padding-bottom: 10px;
@ -42,24 +42,25 @@
@apply py-2;
}
input, select {
input,
select {
outline: none;
}
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="month"],
input[type='date'],
input[type='datetime-local'],
input[type='time'],
input[type='month'],
select,
input[type="week"] {
input[type='week'] {
height: 37px;
&::-webkit-inner-spin-button {
display: none;
}
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
input[type='date']::-webkit-inner-spin-button,
input[type='date']::-webkit-calendar-picker-indicator {
display: none;
-webkit-appearance: none;
}

View File

@ -82,10 +82,8 @@
}
&.popover {
$color: #f9f9f9;
.popover-inner {
background: $color;
background: #f9f9f9;
color: black;
padding: 24px;
border-radius: 5px;
@ -93,7 +91,7 @@
}
.popover-arrow {
border-color: $color;
border-color: #f9f9f9;
}
}