feat(theme): golden-ratio width cap for tag groups
This commit is contained in:
@@ -41,7 +41,8 @@ export function ExperienceCard({ title, company, period, description, stack, cla
|
||||
<p className="text-sm font-medium brutal-border-left pl-3">{period}</p>
|
||||
<p className="text-lg font-black">{company}</p>
|
||||
{stack.length > 0 && (
|
||||
<div className="flex flex-wrap gap-2">
|
||||
/* Golden-ratio cap for the stacked (top) tablet layout; full width on mobile, and lg sidebar is already width-constrained. */
|
||||
<div className="flex flex-wrap gap-2 sm:max-w-golden lg:max-w-none">
|
||||
{stack.map((tech) => (
|
||||
<Badge key={tech} variant="outline" size="xs">
|
||||
{tech}
|
||||
|
||||
Reference in New Issue
Block a user