Skip to content

Commit 65b7a60

Browse files
fixed drag and drop bug with multi browsers opened
1 parent 5b33d89 commit 65b7a60

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/styles/main.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@
2020
}
2121

2222
.card {
23-
background: rgba(0,0,0,0.3);
23+
background: rgb(0,0,0);
2424
background-size: cover;
25-
border: 2px solid rgba(255,255,255,0.5);
25+
border: 2px solid rgb(255,255,255);
2626
border-radius: 2px;
2727
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
2828
color: white;
2929
cursor: pointer;
3030
height: 100%;
3131
margin: 0 auto;
3232
padding: 30px;
33-
position: relative;
33+
position: absolute;
3434
text-align: center;
3535
transition: box-shadow .3s;
3636
width: 100%;
3737
}
3838

3939
.card:hover {
40-
background: rgba(168, 169, 176,0);
40+
background: rgb(168, 169, 176);
4141
}
4242

4343
.card h2 {

0 commit comments

Comments
 (0)