LANCommander/LANCommander.Launcher/Styles/_list.scss

32 lines
682 B
SCSS
Raw Permalink Normal View History

.ant-card-body > .ant-list {
border: none;
border-radius: 0;
margin: -24px;
}
2024-06-02 17:39:49 -05:00
.ant-list-clickable {
.ant-list-item {
cursor: pointer;
2024-06-05 19:03:04 -05:00
position: relative;
2024-06-02 17:39:49 -05:00
&:hover,
&.selected {
2024-06-05 19:03:04 -05:00
background: #262626;
&::after {
background: linear-gradient(270deg, rgba(38,38,38,1) 0%, rgba(38,38,38,0) 100%);
}
}
&::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 24px;
background: linear-gradient(270deg, rgba(20,20,20,1) 0%, rgba(20,20,20,0) 100%);
2024-06-02 17:39:49 -05:00
}
}
}