Skip to content
Closed
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
14 changes: 9 additions & 5 deletions index/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,15 @@
box-shadow: var(--shadow-blue);
}

.terminal-title {
color: var(--blue);
text-transform: uppercase;
letter-spacing: 0.08em;
}
.terminal-title {
color: var(--blue);
text-transform: uppercase;
letter-spacing: 0.08em;
overflow-wrap: anywhere;
word-break: break-word;
white-space: normal;
max-width: 100%;
}

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gauri9368gupta-maker

The current changes still rely only on overflow-wrap and word-break to prevent the overflow. This doesn't fully address the requested review changes.

Please update the PR by:

  • Use responsive font sizing (e.g. clamp()).
  • Add media queries to improve the layout across 320px, 360px, 393px, and 430px screen widths.
  • Adjust spacing/alignment where necessary so the header remains readable without relying only on text wrapping.
  • Expand the implementation into a more complete responsive solution.

Once these changes are made, I'll review the PR again.

.terminal-meta {
color: var(--muted);
Expand Down
Loading