Skip to content

Commit

Permalink
avoided overflows (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
OnkarRuikar authored Jul 19, 2023
1 parent efef4f4 commit 700ab1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions drag-and-drop/copy-move-DataTransfer.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
#src_copy, #src_move {
color: blue;
border: 5px solid black;
width: 300px;
height: 50;
max-width: 300px;
width: fit-content;
height: 50px;
}
#dest_copy, #dest_move {
border: 5px solid blue;
width: 300px;
height: 50;
min-height: 50px;
}
</style>
<script>
Expand Down
5 changes: 3 additions & 2 deletions drag-and-drop/copy-move-DataTransferItemList.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
#src_copy, #src_move {
color: blue;
border: 5px solid black;
width: 300px;
max-width: 300px;
width: fit-content;
height: 50px;
}
#dest_copy, #dest_move {
border: 5px solid blue;
width: 300px;
height: 50px;
min-height: 50px;
}
</style>
<script>
Expand Down

0 comments on commit 700ab1d

Please sign in to comment.