Mengenauswahl Input Styling angepasst

This commit is contained in:
Lorenz Hilpert
2024-05-14 11:54:48 +02:00
parent c75a6d87f9
commit 3017f341af
2 changed files with 13 additions and 2 deletions

View File

@@ -20,8 +20,19 @@
@apply border-brand;
}
input {
input[type='number'] {
@apply focus:outline-none;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input.ng-dirty.ng-invalid {

View File

@@ -15,7 +15,7 @@
cdkMenuGroup
*ngIf="maxValue > 10"
class="h-12 w-full text-center"
type="text"
type="number"
placeholder="10+"
(keydown)="$event.stopPropagation()"
[formControl]="quantityControl"