mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
1) Downgrade numpy to avoid dependency conflict with numba 2) Move all non ldm/invoke files into `invokeai`. This includes assets, backend, frontend, and configs. 3) Fix up way that the backend finds the frontend and the generator finds the NSFW caution.png icon.
32 lines
699 B
SCSS
32 lines
699 B
SCSS
@use '../../styles/Mixins/' as *;
|
|
|
|
.invokeai__select {
|
|
display: flex;
|
|
column-gap: 1rem;
|
|
align-items: center;
|
|
|
|
.invokeai__select-label {
|
|
color: var(--text-color-secondary);
|
|
}
|
|
|
|
.invokeai__select-picker {
|
|
border: 2px solid var(--border-color);
|
|
background-color: var(--background-color-secondary);
|
|
font-weight: bold;
|
|
font-size: 0.9rem;
|
|
height: 2rem;
|
|
border-radius: 0.2rem;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border: 2px solid var(--input-border-color);
|
|
box-shadow: 0 0 10px 0 var(--input-box-shadow-color);
|
|
}
|
|
}
|
|
|
|
.invokeai__select-option {
|
|
background-color: var(--background-color-secondary);
|
|
color: var(--text-color-secondary);
|
|
}
|
|
}
|