- 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
51 lines
No EOL
882 B
SCSS
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;
|
|
}
|
|
} |