LANCommander/LANCommander.Launcher/UI/Components/List/List.razor.scss
Pat Hartl 698a7523b6 Code cleanup
- Move all Launcher components to LANCommander.Launcher.UI namespace
- Move all SCSS files next to components (when possible)
- Refactor styles that control overflow of content into titlebar to MainWindow only
- Remove use in launcher UI of SDK.Client
2025-12-31 20:01:04 -06:00

31 lines
No EOL
681 B
SCSS

.ant-card-body > .ant-list {
border: none;
border-radius: 0;
margin: -24px;
}
.ant-list-clickable {
.ant-list-item {
cursor: pointer;
position: relative;
&:hover,
&.selected {
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%);
}
}
}