[Update] Migrate to tauri-app(Web UI)

This commit is contained in:
Sakamoto Shiina
2024-07-25 01:01:22 +09:00
parent 25899b63da
commit ebd1a8d70d
342 changed files with 14616 additions and 13428 deletions

40
src-ui/utils/root.css Normal file
View File

@@ -0,0 +1,40 @@
@import "./reset.css";
@import "./variables.css";
:root {
font-size: 62.5%;
color: #F2F2F2;
font-family: "Yu Gothic UI";
}
* {
&::-webkit-scrollbar {
width: 0.8rem;
}
&::-webkit-scrollbar-track {
background-color: var(--dark_925_color);
border-radius: 0.4rem;
}
&::-webkit-scrollbar-thumb {
background-color: var(--dark_800_color);
border-radius: 0.4rem;
}
}
p, img, button {
user-select: none;
}
html, body {
height: 100%;
}
#root {
height: 100%;
}
/* SVG内のすべての要素にfillを適用 (colorの調整をcssでするため) */
svg {
fill: currentColor;
}