LANCommander/LANCommander.Launcher/UI/Components/Import/ImportProgressDisplay.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

36 lines
No EOL
705 B
SCSS

.import-progress {
width: 300px;
&-info {
display: flex;
flex-direction: column;
}
&-status {
position: relative;
white-space: nowrap;
overflow: hidden;
max-width: 100%;
font-size: 14px;
&::after {
content: '';
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 32px;
background: linear-gradient(to right, rgba(31, 31, 31, 0), rgb(31, 31, 31, 1) 90%);
pointer-events: none;
}
}
&-progress-bar {
margin: 4px 0;
}
&-footer {
text-align: center;
font-size: 12px;
}
}