Skip to content

Commit

Permalink
Make form background darker
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Dec 15, 2024
1 parent 0fd5bb1 commit 7276451
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion binderhub/static/js/components/BuilderLauncher.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export function BuilderLauncher({
setup();
}, [isLaunching]);
return (
<div className="bg-light p-4">
<div className="bg-custom-dark p-4 pt-2">
<Progress progressState={progressState} />
<ImageLogs
setTerm={setTerm}
Expand Down
2 changes: 1 addition & 1 deletion binderhub/static/js/components/LinkGenerator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export function LinkGenerator({

return (
<>
<form className="d-flex flex-column gap-3 p-4 pb-0 rounded bg-light">
<form className="d-flex flex-column gap-3 p-4 pb-0 rounded bg-custom-dark">
<h4>Build and launch a repository</h4>
<fieldset>
<legend className="form-label">{selectedProvider.repo.label}</legend>
Expand Down
4 changes: 2 additions & 2 deletions binderhub/static/js/components/Progress.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ progressDisplay[PROGRESS_STATES.FAILED] = {
export function Progress({ progressState }) {
return (
<div
className="progress-stacked mb-2"
className="progress-stacked mb-2 border border-1"
role="progressbar"
style={{ height: "24px" }}
style={{ height: "32px" }}
>
{progressState === null
? ""
Expand Down
4 changes: 4 additions & 0 deletions binderhub/static/js/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,8 @@ a {
margin-bottom: 100px;
}

.bg-custom-dark {
background-color: rgb(235, 236, 237);
}

@import "bootstrap-icons/font/bootstrap-icons.css";

0 comments on commit 7276451

Please sign in to comment.