[Refactor] Move to src-ui/views and src-ui/logics structure.

This commit is contained in:
Sakamoto Shiina
2025-11-05 11:49:48 +09:00
parent 62f7c6d534
commit db820375f1
339 changed files with 19 additions and 19 deletions

View File

@@ -0,0 +1,51 @@
@import "./reset.css";
@import "./variables.css";
:root {
font-size: 62.5%;
color: var(--dark_basic_text_color);
}
* {
user-select: none;
&::-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;
}
}
html, body {
height: 100%;
font-family: var(--font_family); /* If not found the font family where 'root:' that is selected by user*/
border-radius: 10px; /* fixed by px */
overflow: hidden;
}
#root {
height: 100%;
/* For controlling a whole window transparency */
opacity: 1;
}
/* SVG内のすべての要素にfillを適用 (colorの調整をcssでするため) */
svg {
fill: currentColor;
}
p {
white-space: pre-wrap;
}
img {
user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
}