mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
first commit
This commit is contained in:
commit
91b1341271
165 changed files with 20993 additions and 0 deletions
22
src/renderer/components/bottom-panel/bottom-panel.css.ts
Normal file
22
src/renderer/components/bottom-panel/bottom-panel.css.ts
Normal file
|
@ -0,0 +1,22 @@
|
|||
import { SPACING_UNIT, vars } from "../../theme.css";
|
||||
import { style } from "@vanilla-extract/css";
|
||||
|
||||
export const bottomPanel = style({
|
||||
width: "100%",
|
||||
borderTop: `solid 1px ${vars.color.borderColor}`,
|
||||
padding: `${SPACING_UNIT / 2}px ${SPACING_UNIT * 2}px`,
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
transition: "all ease 0.2s",
|
||||
justifyContent: "space-between",
|
||||
fontSize: vars.size.bodyFontSize,
|
||||
zIndex: "1",
|
||||
});
|
||||
|
||||
export const downloadsButton = style({
|
||||
cursor: "pointer",
|
||||
color: vars.color.bodyText,
|
||||
":hover": {
|
||||
textDecoration: "underline",
|
||||
},
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue