You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
348 B

.container {
background: #1d1f27;
position: absolute;
width: 200px;
top: 30px;
left: -100px;
z-index: 10;
li {
padding: 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 10px;
cursor: pointer;
transition: all 0.25s;
&:hover {
background: #0f0f0f;
}
}
}