22 lines
544 B
SCSS
22 lines
544 B
SCSS
.list {
|
|
height: 100%;
|
|
max-width: 300px;
|
|
border-top: 1px dashed lightgray;
|
|
li {
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
&:hover {
|
|
color: lightseagreen;
|
|
// -webkit-box-shadow: inset 0px 0px 4px 4px rgba(211, 211, 211, 0.4);
|
|
// box-shadow: inset 0px 0px 4px 4px rgba(211, 211, 211, 0.4);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.newBtn {
|
|
margin-left:5px;
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: lightseagreen;
|
|
}
|
|
}
|
|
}
|