Fix Grabej
This commit is contained in:
@ -1937,11 +1937,20 @@ html, body {
|
||||
.steal-target-select {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.steal-target-option {
|
||||
pointer-events: auto !important;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.steal-target-option:hover {
|
||||
background: rgba(0,180,255,0.2) !important;
|
||||
border-color: var(--cyan) !important;
|
||||
transform: scale(1.02);
|
||||
}
|
||||
.steal-target-option:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
.steal-deck-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
|
||||
@ -1957,14 +1966,24 @@ html, body {
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
border: 2px solid transparent;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
pointer-events: auto !important;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
.steal-deck-card:hover {
|
||||
transform: scale(1.1);
|
||||
box-shadow: 0 0 15px rgba(0,180,255,0.5);
|
||||
z-index: 15;
|
||||
}
|
||||
.steal-deck-card.selected {
|
||||
border-color: var(--cyan);
|
||||
box-shadow: 0 0 20px rgba(0,180,255,0.7);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
.steal-deck-card:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
.steal-selected {
|
||||
min-height: 80px;
|
||||
|
||||
Reference in New Issue
Block a user