Skip to content

Commit

Permalink
enhaced : modal for duplicate files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sneakad committed Oct 21, 2022
1 parent 8da78da commit 2818fb8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
14 changes: 8 additions & 6 deletions client/src/components/modal/Modal.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.modal-dialog{
.modal-dialog {
max-width: 500px;
margin: 0 auto;
z-index: 1000;
Expand All @@ -9,8 +9,8 @@
display: flex;
flex-direction: column;
width: 100%;
background-color: #fff;
border: 1px solid rgba(0,0,0,0.175);
background-color: #010F0E;
border: 1px solid #00ffa8;
border-radius: .5rem;
outline: 0;
}
Expand All @@ -21,10 +21,12 @@
align-items: center;
justify-content: space-between;
padding: 1rem;
border-bottom: 1px solid #dee2e6;
}

.modal-dialog .modal-content .body {
font-family: PolySans Median;
font-size: var(--font-size-md);
color: white;
position: relative;
flex: 1 1 auto;
padding: 1rem;
Expand All @@ -36,9 +38,9 @@
flex-wrap: wrap;
align-items: center;
justify-content: flex-end;
padding: .5rem;
border-top: 1px solid #dee2e6;
padding: .8rem;
}

.modal-backdrop {
position: fixed;
top: 0;
Expand Down
5 changes: 4 additions & 1 deletion client/src/pages/home/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,13 @@
background-color: var(--primary-color-dark);
}

.confirmation-btn{
.confirmation-btn{
margin: unset;
margin-left: 1rem;
width: auto;
padding: auto;
border-radius: 8px;
font-size: var(--font-size-md);
}

@media screen and (max-width: 1350px ){
Expand Down

0 comments on commit 2818fb8

Please sign in to comment.