mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-19 15:43:49 +02:00
update
This commit is contained in:
@@ -71,10 +71,12 @@ export function NavigationDropdown() {
|
|||||||
>
|
>
|
||||||
<Menu className="h-5 w-5" />
|
<Menu className="h-5 w-5" />
|
||||||
</button>
|
</button>
|
||||||
{isOpen && (
|
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
'pointer-events-auto absolute left-0 top-full z-[999] mt-2 w-48 min-w-[320px] translate-y-2.5 rounded-lg bg-slate-800 py-2 opacity-100 shadow-xl transition-all duration-100',
|
'absolute pointer-events-none left-0 top-full z-[999] mt-2 w-48 min-w-[320px] -translate-y-1 rounded-lg bg-slate-800 py-2 opacity-0 shadow-xl transition-all duration-100',
|
||||||
|
{
|
||||||
|
'pointer-events-auto translate-y-2.5 opacity-100': isOpen,
|
||||||
|
},
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{links.map((link) => (
|
{links.map((link) => (
|
||||||
@@ -97,7 +99,6 @@ export function NavigationDropdown() {
|
|||||||
</a>
|
</a>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## Eager Loading
|
## Eager Loading
|
||||||
|
|
||||||
Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returns the related entities as a part of the query and a large amount of data is loaded at once.
|
Eager Loading helps you to load all your needed entities at once; i.e., all your child entities will be loaded at single database call. This can be achieved, using the Include method, which returs the related entities as a part of the query and a large amount of data is loaded at once.
|
||||||
|
|
||||||
## Lazy Loading
|
## Lazy Loading
|
||||||
|
|
||||||
|
@@ -4186,7 +4186,7 @@
|
|||||||
"x": "23",
|
"x": "23",
|
||||||
"y": "52",
|
"y": "52",
|
||||||
"properties": {
|
"properties": {
|
||||||
"controlName": "ext_link:roadmap.sh/devops"
|
"controlName": "ext_link:roadmap.sh/best-practices"
|
||||||
},
|
},
|
||||||
"children": {
|
"children": {
|
||||||
"controls": {
|
"controls": {
|
||||||
|
Reference in New Issue
Block a user