mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
28 lines
495 B
SCSS
28 lines
495 B
SCSS
@use '../../../styles/Mixins/' as *;
|
|
|
|
.process-buttons {
|
|
display: flex;
|
|
column-gap: 0.5rem;
|
|
}
|
|
|
|
.invoke-btn {
|
|
flex-grow: 1;
|
|
svg {
|
|
width: 18px !important;
|
|
height: 18px !important;
|
|
}
|
|
@include Button(
|
|
$btn-color: var(--accent-color),
|
|
$btn-color-hover: var(--accent-color-hover),
|
|
// $btn-width: 5rem
|
|
);
|
|
}
|
|
|
|
.cancel-btn {
|
|
@include Button(
|
|
$btn-color: var(--destructive-color),
|
|
$btn-color-hover: var(--destructive-color-hover),
|
|
// $btn-width: 3rem
|
|
);
|
|
}
|