Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/main/patternfly/chat…
Browse files Browse the repository at this point in the history
…bot-2.2.0-prerelease.28
  • Loading branch information
vishnoianil authored Mar 1, 2025
2 parents 5648942 + 8bbc436 commit bc0cfc6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions deploy/k8s/overlays/openshift/qa/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ patches:
patch: "- op: replace\n path: /spec/template/spec/containers/0/envFrom/0/secretRef/name\n value: qa.env\n- op: add \n path: /spec/template/spec/containers/0/readinessProbe\n value:\n exec:\n command:\n - sh\n - -c\n - \"/opt/app-root/src/src/healthcheck-probe.sh\"\n initialDelaySeconds: 5\n periodSeconds: 10\n- op: add\n path: /spec/template/spec/containers/-\n value:\n name: model-endpoint-healthcheck-sidecar\n image: quay.io/instructlab-ui/healthcheck-sidecar\n imagePullPolicy: Always # until image lands in quay cannot use pullPolicy: Always\n ports:\n - containerPort: 8080\n envFrom:\n - secretRef:\n name: qa.env"
images:
- name: quay.io/instructlab-ui/ui
newTag: pr-620
newTag: pr-623
- name: quay.io/instructlab-ui/pathservice
newTag: pr-620
newTag: pr-623
- name: quay.io/instructlab-ui/healthcheck-sidecar
newTag: pr-375
15 changes: 9 additions & 6 deletions src/app/login/githublogin.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ a {
margin-top: 1rem;
color: white !important;
padding: 20px;
font-size: large !important;
font-size: xx-large !important;
font-weight: bold !important;
}

.description-text {
Expand All @@ -44,14 +45,11 @@ a {
.urls-text {
margin-top: 1rem;
color: white;
padding: 20px;
font-size: large;
}

.urls-text-medium {
margin-top: 1rem;
color: white;
padding: 20px;
text-align: center;
font-size: medium;
}
Expand All @@ -63,6 +61,11 @@ a {
font-size: large;
}

.login-label {
color: white;
.login-button {
background-color: black !important;
font-weight: bold !important;
}

.login-button:hover {
background-color: #252525 !important;
}
2 changes: 1 addition & 1 deletion src/app/login/githublogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const GithubLogin: React.FC = () => {
</Content>
</Content>
<div className="login-container">
<Button variant="primary" icon={<GithubIcon />} iconPosition="left" size="lg" onClick={handleGitHubLogin}>
<Button variant="primary" className="login-button" icon={<GithubIcon />} iconPosition="left" size="lg" onClick={handleGitHubLogin}>
Sign in with GitHub
</Button>
</div>
Expand Down

0 comments on commit bc0cfc6

Please sign in to comment.