diff --git a/src/index.css b/src/index.css index 7cfe7a41..4557ac72 100644 --- a/src/index.css +++ b/src/index.css @@ -15,10 +15,6 @@ * { scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-color); - - /* Turn off antd animations by turning all animations off. */ - animation-duration: 0s !important; - transition-duration: 0s !important; } ::-webkit-scrollbar { @@ -42,6 +38,7 @@ body { user-select: none; overflow: hidden; margin: 0; + font-size: 15px; font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif; background-color: var(--bg-color); diff --git a/src/viewer/gui/ModelView.ts b/src/viewer/gui/ModelView.ts index a0fc35a5..6bd64476 100644 --- a/src/viewer/gui/ModelView.ts +++ b/src/viewer/gui/ModelView.ts @@ -15,7 +15,7 @@ import { gui_store, GuiTool } from "../../core/stores/GuiStore"; import { PSO_FRAME_RATE } from "../../core/rendering/conversion/ninja_animation"; const MODEL_LIST_WIDTH = 100; -const ANIMATION_LIST_WIDTH = 150; +const ANIMATION_LIST_WIDTH = 130; export class ModelView extends ResizableView { readonly element = create_el("div", "viewer_ModelView");