Skip to content
Snippets Groups Projects
Commit babe3697 authored by HJ's avatar HJ :fire:
Browse files

increase load time to avoid glitchiness

parent c14f88e2
No related branches found
No related tags found
1 merge request!2040Fixes roundup 4
......@@ -498,8 +498,6 @@ nav {
box-sizing: content-box;
color: inherit;
--shadow: none;
&.-link {
/* stylelint-disable-next-line declaration-no-important */
color: var(--link) !important;
......
......@@ -567,7 +567,13 @@ export const init = ({
if (!liteMode && combination.state.indexOf('hover') >= 0) {
combination.lazy = true
}
if (extraCompileComponents.has(component.name)) {
if (
parent?.component !== 'Root' &&
!virtualComponents.has(component.name) &&
!transparentComponents.has(component.name) &&
extraCompileComponents.has(component.name)
) {
combination.lazy = true
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment