LANCommander/LANCommander.Launcher/UI/Components/DownloadQueue/CurrentDownloadItem.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

51 lines
No EOL
882 B
SCSS

.downloader {
flex-grow: 1;
max-width: 512px;
font-size: 12px;
cursor: pointer;
&-current {
display: flex;
gap: 16px;
.ant-progress,
.ant-progress-inner,
.ant-progress-outer {
display: block;
}
.ant-progress-text {
display: none;
}
.ant-progress-show-info .ant-progress-outer {
padding-right: 0;
}
}
&-current-icon {
display: flex;
align-items: center;
img {
width: 32px;
height: 32px;
object-fit: contain;
}
}
&-current-info {
flex-grow: 1;
}
&-current-upper,
&-current-lower {
display: flex;
justify-content: space-between;
}
&-current-progress {
margin-top: 4px;
margin-bottom: 4px;
}
}