Skip to content

Commit a7a31c6

Browse files
committed
change width for push backdrop message
1 parent 4129e9d commit a7a31c6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ui/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/src/Components/DashBoard/Repository/GitComponents/GitOperation/GitOperationComponent.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,15 +347,15 @@ export default function GitOperationComponent(props) {
347347
{stageItems.map((item) => {
348348
if (item) {
349349
return (
350-
<div className="git-ops--unstage--table--data" key={item}>
350+
<div className="git-ops--unstage--table--data p-1" key={item}>
351351
<div className="w-11/12 block px-1 border-r-2 border-gray-300">
352-
<div className="git-changed-item overflow-x-auto w-full font-sans font-light text-base text-gray-700">
352+
<div className="git-changed-item overflow-x-auto w-full font-sans ml-1 text-gray-700">
353353
{item}
354354
</div>
355355
</div>
356356
<div className="w-1/4 mx-auto">
357357
<div
358-
className="git-ops--unstage--remove--btn p-3 bg-red-400 text-xl font-sans font-semibold text-center shadow-md hover:bg-red-500 hover:shadow-sm"
358+
className="git-ops--unstage--remove--btn p-2 my-1 bg-red-400 text-xl font-sans font-semibold text-center shadow-md hover:bg-red-500 hover:shadow-sm"
359359
onClick={(event) => {
360360
removeStagedItem(item, event);
361361
setUnStageFailed(false);

0 commit comments

Comments
 (0)