mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-09 09:34:55 -05:00
Fixes responsive images (omg finally), removes app padding
This commit is contained in:
@@ -1,7 +1,19 @@
|
||||
@use '../../styles/Mixins/' as *;
|
||||
|
||||
.progress-bar {
|
||||
background-color: var(--root-bg-color);
|
||||
height: $progress-bar-thickness !important;
|
||||
|
||||
div {
|
||||
background-color: var(--progress-bar-color);
|
||||
&[data-indeterminate] {
|
||||
background-color: unset;
|
||||
background-image: linear-gradient(
|
||||
to right,
|
||||
transparent 0%,
|
||||
var(--progress-bar-color) 50%,
|
||||
transparent 100%
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@ const ProgressBar = () => {
|
||||
|
||||
return (
|
||||
<Progress
|
||||
height="4px"
|
||||
value={value}
|
||||
isIndeterminate={isProcessing && !currentStatusHasSteps}
|
||||
className="progress-bar"
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
}
|
||||
|
||||
.site-header-left-side {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, max-content);
|
||||
column-gap: 0.6rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
column-gap: 0.7rem;
|
||||
padding-left: 0.5rem;
|
||||
|
||||
img {
|
||||
width: 32px;
|
||||
@@ -20,8 +20,7 @@
|
||||
}
|
||||
|
||||
.site-header-right-side {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, max-content);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
column-gap: 0.5rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user