eruda3 / src /EntryBtn /EntryBtn.scss
soiz1's picture
Migrated from GitHub
271613e verified
raw
history blame contribute delete
397 Bytes
.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;
}
}
}