Skip to content

Commit

Permalink
chore: increase form elements' border radius and center components (#420
Browse files Browse the repository at this point in the history
)

* Increase border radius of select and input to 8px

* Center form header components vertically
  • Loading branch information
OLILHR authored Jan 30, 2025
1 parent 73a13ea commit 184b52c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form [formGroup]="headerSearchForm">
<form [formGroup]="headerSearchForm" class="flex items-center">
<app-format-version-select class="inline-block me-3 h-16 w-64" formControlName="formatVersion" />
<app-pruefi-input
class="inline-block h-16 w-64"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="flex flex-col items-start mt-2 h-auto w-full">
<select
id="format-version-select"
class="inline-block border-2 border-white rounded bg-tint py-3 ps-3 pe-8 focus:outline-0 w-full"
class="inline-block border-2 border-white rounded-lg bg-tint py-3 ps-3 pe-8 focus:outline-0 w-full"
[formControl]="control"
(change)="onChange ? onChange(control.value) : null">
<option value="">Bitte auswählen</option>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="flex flex-col items-start mt-2 w-full">
<input
class="rounded border-2 border-white bg-tint py-2.5 px-2 focus:outline-0 w-full"
class="rounded-lg border-2 border-white bg-tint py-[10.5px] px-2 focus:outline-0 w-full"
type="text"
list="pruefi-list"
[formControl]="control"
Expand Down

0 comments on commit 184b52c

Please sign in to comment.