Skip to content

Commit

Permalink
Merge pull request #4 from convictionsai/fix-header
Browse files Browse the repository at this point in the history
Fix(header): search input not alligned
  • Loading branch information
atmosuwiryo authored Apr 3, 2023
2 parents 60cb73b + a7552b0 commit 5bf4558
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions deploy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ resource "kubernetes_service_account" "cicd" {
name = "cicd"
namespace = "convictionsai"
}

lifecycle {
ignore_changes = [
secret
]
}
}

resource "kubernetes_cluster_role" "cicd" {
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/layout/header.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ import { IconComponent } from "../icons/icon.component";
(keyup.enter)="search()"
type="search"
id="search-dropdown"
class="border-l-1 md:border-l-6 z-20 block w-full rounded-lg border border-gray-300 bg-gray-50 p-2.5 text-sm text-gray-900 focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:border-l-gray-600 dark:bg-gray-800 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 md:rounded-l-none md:border-l-gray-50"
class=" border-none border-l-1 md:border-l-6 z-20 block w-full rounded-lg border-gray-300 bg-gray-50 h-full text-sm text-gray-900 focus:border-primary-500 focus:ring-primary-500 dark:border-gray-600 dark:border-l-gray-600 dark:bg-gray-800 dark:text-white dark:placeholder-gray-400 dark:focus:border-primary-500 rounded-l-none md:border-l-gray-50"
placeholder="Search anything..."
required />
<button
Expand Down

0 comments on commit 5bf4558

Please sign in to comment.