-
-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] Alignment of current download component when sidebar is collaps…
…ed (#2933) Fix alignment of current download in collapsed sidebar
- Loading branch information
Showing
4 changed files
with
42 additions
and
41 deletions.
There are no files selected for viewing
36 changes: 0 additions & 36 deletions
36
src/frontend/components/UI/Sidebar/components/CurrentDownload/index.css
This file was deleted.
Oops, something went wrong.
40 changes: 40 additions & 0 deletions
40
src/frontend/components/UI/Sidebar/components/CurrentDownload/index.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.currentDownload { | ||
font-size: var(--text-sm); | ||
padding: var(--space-md) 0; | ||
transition: 300ms; | ||
margin-top: var(--space-sm); | ||
|
||
& > .gameTitle { | ||
font-size: var(--text-md); | ||
transition: 600ms; | ||
font-weight: var(--bold); | ||
} | ||
|
||
&:hover > .gameTitle { | ||
color: var(--accent-overlay); | ||
transition: 600ms; | ||
} | ||
|
||
.downloadStatus { | ||
color: var(--success); | ||
font-family: var(--secondary-font-family); | ||
font-style: italic; | ||
font-weight: normal; | ||
font-size: var(--text-sm); | ||
line-height: var(--text-sm); | ||
} | ||
|
||
.MuiLinearProgress-bar1Determinate { | ||
background-color: var(--success); | ||
} | ||
|
||
.statusIcon { | ||
display: none; | ||
margin-inline-end: 10px; | ||
svg { | ||
width: 27px; | ||
height: auto; | ||
color: var(--success); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters