mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-15 04:32:13 +00:00
separator
This commit is contained in:
parent
87eaf021b4
commit
366cb1ac2f
2 changed files with 9 additions and 1 deletions
|
@ -1,7 +1,13 @@
|
||||||
import { style } from "@vanilla-extract/css";
|
import { style } from "@vanilla-extract/css";
|
||||||
|
|
||||||
import { vars } from "../../../theme.css";
|
import { SPACING_UNIT, vars } from "../../../theme.css";
|
||||||
|
|
||||||
export const heroPanelAction = style({
|
export const heroPanelAction = style({
|
||||||
border: `solid 1px ${vars.color.muted}`,
|
border: `solid 1px ${vars.color.muted}`,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const separator = style({
|
||||||
|
width: "1px",
|
||||||
|
backgroundColor: vars.color.border,
|
||||||
|
margin: `${SPACING_UNIT / 2}px 0`,
|
||||||
|
});
|
||||||
|
|
|
@ -245,6 +245,8 @@ export function HeroPanelActions() {
|
||||||
<GearIcon />
|
<GearIcon />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
<div className={styles.separator} />
|
||||||
|
|
||||||
{game?.progress === 1 && game?.folderName && (
|
{game?.progress === 1 && game?.folderName && (
|
||||||
<>
|
<>
|
||||||
<BinaryNotFoundModal
|
<BinaryNotFoundModal
|
||||||
|
|
Loading…
Reference in a new issue