mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Add Invoke AI Logo to unpinned Options
This commit is contained in:
parent
88203d8db2
commit
c73a61b785
1
frontend/dist/assets/index.519094b9.css
vendored
1
frontend/dist/assets/index.519094b9.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
frontend/dist/assets/index.ed39e306.css
vendored
Normal file
1
frontend/dist/assets/index.ed39e306.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4
frontend/dist/index.html
vendored
4
frontend/dist/index.html
vendored
@ -6,8 +6,8 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>InvokeAI - A Stable Diffusion Toolkit</title>
|
||||
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
|
||||
<script type="module" crossorigin src="./assets/index.1bbf045c.js"></script>
|
||||
<link rel="stylesheet" href="./assets/index.519094b9.css">
|
||||
<script type="module" crossorigin src="./assets/index.d3820055.js"></script>
|
||||
<link rel="stylesheet" href="./assets/index.ed39e306.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -3,6 +3,7 @@
|
||||
.progress-bar {
|
||||
background-color: var(--root-bg-color);
|
||||
height: $progress-bar-thickness !important;
|
||||
z-index: 99;
|
||||
|
||||
div {
|
||||
background-color: var(--progress-bar-color);
|
||||
|
@ -23,6 +23,7 @@
|
||||
height: $app-content-height;
|
||||
width: $options-bar-max-width;
|
||||
max-width: $options-bar-max-width;
|
||||
|
||||
flex-shrink: 0;
|
||||
position: relative;
|
||||
overflow-y: scroll;
|
||||
@ -70,3 +71,20 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.invoke-ai-logo-wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
column-gap: 0.7rem;
|
||||
padding-left: 0.5rem;
|
||||
padding-top: $progress-bar-thickness;
|
||||
|
||||
img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
}
|
||||
|
@ -15,6 +15,7 @@ import {
|
||||
setShouldShowOptionsPanel,
|
||||
} from '../options/optionsSlice';
|
||||
import { setNeedsCache } from './Inpainting/inpaintingSlice';
|
||||
import InvokeAILogo from '../../assets/images/logo.png';
|
||||
|
||||
type Props = { children: ReactNode };
|
||||
|
||||
@ -161,6 +162,15 @@ const InvokeOptionsPanel = (props: Props) => {
|
||||
{shouldPinOptionsPanel ? <BsPinAngleFill /> : <BsPinAngle />}
|
||||
</div>
|
||||
</Tooltip>
|
||||
{!shouldPinOptionsPanel && (
|
||||
<div className="invoke-ai-logo-wrapper">
|
||||
<img src={InvokeAILogo} alt="invoke-ai-logo" />
|
||||
<h1>
|
||||
invoke <strong>ai</strong>
|
||||
</h1>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user