Skip to content

Commit

Permalink
Merge pull request #405 from JuliaDataCubes/la/menu_ecosystem
Browse files Browse the repository at this point in the history
ecosystem plus some css
  • Loading branch information
lazarusA authored Jun 22, 2024
2 parents 4aaa7cb + e6a679b commit e61fb68
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@ export default defineConfig({
{ text: 'Other Tutorials', link: '/tutorials/other_tutorials' },
]
},
{ text: 'Ecosystem',
items: [
{ text: 'DimensionalData.jl', link: 'https://rafaqz.github.io/DimensionalData.jl/dev/' },
{ text: 'NetCDF.jl', link: 'https://juliageo.org/NetCDF.jl/stable/'},
{ text: 'Zarr.jl', link: 'https://juliaio.github.io/Zarr.jl/latest/'},
{ text: 'ArchGDAL.jl', link: 'https://yeesian.com/ArchGDAL.jl/stable/' },
{ text: 'GeoMakie.jl', link: 'https://geo.makie.org/dev/' },
{ text: 'Makie.jl', link: 'https://docs.makie.org/dev/' },
]
},
{
text: 'Development',
items: [
Expand Down
33 changes: 33 additions & 0 deletions docs/src/.vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -197,4 +197,37 @@ mjx-container > svg {
--vp-c-brand-3: #ff875f;
--vp-c-sponsor: #ff875f;
--vitest-c-sponsor-hover: #e51370;
}

.VPDoc.has-aside .content-container {
max-width: 100% !important;
}
.aside {
max-width: 200px !important;
padding-left: 0 !important;
}
.VPDoc {
padding-top: 15px !important;
padding-left: 5px !important;

}
/* This one does the right menu */

.VPDocOutlineItem li {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
max-width: 200px;
}

.VPNavBar .title {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

@media (max-width: 960px) {
.VPDoc {
padding-left: 25px !important;
}
}

0 comments on commit e61fb68

Please sign in to comment.