Skip to content

Commit

Permalink
Fix CSS for front page
Browse files Browse the repository at this point in the history
  • Loading branch information
npentrel committed Jan 10, 2025
1 parent 382ba14 commit 347730d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 8 additions & 1 deletion assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2763,7 +2763,7 @@ nav {
min-height: 3.5rem;
}

@media (max-width: 768px) {
@media (max-width: 767px) {
.second-nav {
display: none;
}
Expand Down Expand Up @@ -2804,6 +2804,10 @@ span.section-overview {
display: unset;
}

#landing-page-sidebar {
display: none;
}

.menu-toggle.open-on-desktop {
display: none;
}
Expand Down Expand Up @@ -2973,6 +2977,7 @@ a.tree-root {
.upside-down {
display: flex;
flex-direction: column-reverse;
align-self: first baseline;
}

.upside-down.max-page {
Expand All @@ -2995,6 +3000,8 @@ a.tree-root {
.upside-down > .col.hover-card {
min-width: unset;
max-width: unset;
max-height: fit-content;
flex-grow: unset !important;
}

.col-12.col-md-12.col-xl-12.pl-md-12 > .td-content {
Expand Down
5 changes: 4 additions & 1 deletion layouts/docs/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
<div class="container-fluid td-outer">
<div class="td-main">
<div class="row flex-xl-nowrap">
<main class="col-12 col-md-12 col-xl-12 pl-md-12" role="main">
<aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none" id="landing-page-sidebar">
{{ partial "sidebar.html" . }}
</aside>
<main class="col-12 col-md-12 col-xl-12 pl-md-12" role="main">
<div id="rss-feed">
<a target="_blank" title="Open RSS feed" aria-label="Open RSS feed" href="{{ .Permalink }}feed.xml">
<p><i class="fas fa-rss"></i> RSS Feed</p>
Expand Down
2 changes: 1 addition & 1 deletion static/js/embed.js
Original file line number Diff line number Diff line change
Expand Up @@ -60619,7 +60619,7 @@ const TP = Z(ebe), tbe = D.forwardRef(
value: t,
onChange: b,
onKeyDown: r,
placeholder: c || (l ? "Search..." : "Search for anything..."),
placeholder: c || (l ? "Search..." : "Search..."),
narrowView: n,
onFocus: g,
onBlur: k
Expand Down

0 comments on commit 347730d

Please sign in to comment.