Skip to content

Commit f5e0fef

Browse files
updates
1 parent 02eb9ff commit f5e0fef

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

components/PostLayout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ export default function PostLayout({
201201
<WhatsAppFloat />
202202

203203
<style>{`
204-
@media (max-width: 900px) {
205-
main > div {
204+
@media (max-width: 1023px) {
205+
.post-layout-inner {
206206
grid-template-columns: 1fr !important;
207207
}
208208
.post-sidebar {
209-
order: -1;
209+
display: none !important;
210210
}
211211
}
212212
`}</style>

components/Sidebar.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ export default function Sidebar() {
99
Career Support Services
1010
</h3>
1111
<div style={{ display: 'flex', flexDirection: 'column', gap: '0.5rem' }}>
12+
<Link href="/get-interview-scheduled/" className="sidebar-nav-link">
13+
Get Interview Scheduled
14+
</Link>
1215
<Link href="/resume-linkedin-optimization-for-developers/" className="sidebar-nav-link">
1316
Resume &amp; LinkedIn Optimization
1417
</Link>
@@ -43,7 +46,7 @@ export default function Sidebar() {
4346
.sidebar-nav-link:hover {
4447
color: var(--pts-accent-hover);
4548
}
46-
@media (max-width: 768px) {
49+
@media (max-width: 1023px) {
4750
/* Detailed pages (PostLayout): whole aside is duplicated vs nav/footer; hide on small screens */
4851
.post-layout-sidebar {
4952
display: none !important;

0 commit comments

Comments
 (0)