File size: 397 Bytes
271613e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
.container {
.entry-btn {
touch-action: none;
width: 40px;
height: 40px;
display: flex;
background: #000;
opacity: 0.3;
border-radius: 10px;
position: relative;
z-index: 1000;
transition: opacity 0.3s;
color: #fff;
font-size: 25px;
align-items: center;
justify-content: center;
&.active,
&:active {
opacity: 0.8;
}
}
}
|