Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/collections/programs/Programs.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,24 @@ export const ProgramsWrapper = styled.div`
flex-grow: 0.25;
}

.lfx-layout {
display: flex;
gap: 2rem;
align-items: flex-start;
@media only screen and (max-width: 900px) {
flex-direction: column-reverse;
Comment thread
coderabbitai[bot] marked this conversation as resolved.
}
}

.lfx-sidebar-col {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: flex-end;
flex-shrink: 0;
align-self: stretch;
}

.iframe-container {
position: relative;
float: right;
Expand Down
20 changes: 12 additions & 8 deletions src/collections/programs/lfx-2026/lfx-2026.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ export const LfxLogoImage = () => { const { isDark } = useStyledDarkMode(); retu

<span id="top"></span>

<div style={{display: "flex", gap: "2rem", alignItems: "flex-start"}}>
<div className="lfx-layout">
<div style={{flex: "1 1 auto", minWidth: 0}}>

<div style={{overflow: "hidden"}}><LfxLogoImage /></div>
<h3>Linux Foundation 2026 Program Timeline</h3>

<div>
Expand Down Expand Up @@ -400,12 +399,17 @@ We interact daily over Slack, and have an open source project [meeting everyday]


</div>
<LfxPageNav items={[
{ href: "#spring-2026", label: "Spring 2026 Projects" },
{ href: "#summer-2026", label: "Summer 2026 Projects" },
{ href: "#fall-2026", label: "Fall 2026 Projects" },
{ href: "#additional-info", label: "Additional Information" },
]} />
<div className="lfx-sidebar-col">
<LfxLogoImage />
<div style={{flexGrow: 1}}>
<LfxPageNav items={[
{ href: "#spring-2026", label: "Spring 2026 Projects" },
{ href: "#summer-2026", label: "Summer 2026 Projects" },
{ href: "#fall-2026", label: "Fall 2026 Projects" },
{ href: "#additional-info", label: "Additional Information" },
]} />
</div>
</div>
</div>

</ProgramsWrapper>