mirror of
https://github.com/ivabus/gui
synced 2025-04-24 14:37:11 +03:00

* #384 fix preloading tiles for packages * #384 home button should show all packages * #384 popup menu style adjustments * #384 cursors * #389 header z-index to not overlap with versions popup * fix z-index of pop-up menu --------- Co-authored-by: neil molina <neil@neils-MacBook-Pro.local>
41 lines
498 B
CSS
41 lines
498 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: "mona-sans";
|
|
src: url("/fonts/mona-sans-bold.woff2");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "inter";
|
|
src: url("/fonts/inter-regular.woff2");
|
|
}
|
|
|
|
html {
|
|
background-color: #1a1a1a;
|
|
color: #fff;
|
|
user-select: none;
|
|
cursor: default;
|
|
}
|
|
|
|
@layer base {
|
|
html {
|
|
font-family: sono, sans-serif;
|
|
}
|
|
}
|
|
|
|
.text-primary,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
.click-copy {
|
|
font-family: "mona-sans";
|
|
}
|
|
|
|
.pk-version {
|
|
font-family: "inter";
|
|
}
|