style: reduce spacing and top margins by half on Members, Lectures, and Standardization pages
This commit is contained in:
@@ -6,7 +6,7 @@ export default function LecturesPage() {
|
|||||||
const olderSemesters = semesters.slice(3);
|
const olderSemesters = semesters.slice(3);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container-content space-y-32 md:space-y-48 py-16 md:py-28">
|
<div className="container-content space-y-8 md:space-y-12 py-6 md:py-10">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<section className="space-y-3">
|
<section className="space-y-3">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
@@ -24,7 +24,7 @@ export default function LecturesPage() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Recent 3 Semesters */}
|
{/* Recent 3 Semesters */}
|
||||||
<section className="space-y-6 pt-20 md:pt-28 border-t border-line">
|
<section className="space-y-6 pt-6 md:pt-10 border-t border-line">
|
||||||
<div className="flex justify-between items-end">
|
<div className="flex justify-between items-end">
|
||||||
<div>
|
<div>
|
||||||
<div className="font-mono text-xs text-vermillion uppercase tracking-widest font-bold">
|
<div className="font-mono text-xs text-vermillion uppercase tracking-widest font-bold">
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export default function MembersPage() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container-content space-y-32 md:space-y-48 py-16 md:py-28">
|
<div className="container-content space-y-8 md:space-y-12 py-6 md:py-10">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<section className="space-y-3">
|
<section className="space-y-3">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
@@ -29,7 +29,7 @@ export default function MembersPage() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Professor Section */}
|
{/* Professor Section */}
|
||||||
<section className="space-y-6 pt-20 md:pt-28 border-t border-line">
|
<section className="space-y-6 pt-6 md:pt-10 border-t border-line">
|
||||||
<div className="font-mono text-xs text-vermillion uppercase tracking-widest font-bold">
|
<div className="font-mono text-xs text-vermillion uppercase tracking-widest font-bold">
|
||||||
Faculty
|
Faculty
|
||||||
</div>
|
</div>
|
||||||
@@ -78,7 +78,7 @@ export default function MembersPage() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Active Researchers Section */}
|
{/* Active Researchers Section */}
|
||||||
<section className="space-y-8 pt-20 md:pt-28 border-t border-line">
|
<section className="space-y-8 pt-6 md:pt-10 border-t border-line">
|
||||||
<div className="flex justify-between items-end">
|
<div className="flex justify-between items-end">
|
||||||
<div>
|
<div>
|
||||||
<div className="font-mono text-xs text-cobalt uppercase tracking-widest font-bold">
|
<div className="font-mono text-xs text-cobalt uppercase tracking-widest font-bold">
|
||||||
@@ -152,7 +152,7 @@ export default function MembersPage() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Alumni Section (Native <details>/<summary> progressive disclosure) */}
|
{/* Alumni Section (Native <details>/<summary> progressive disclosure) */}
|
||||||
<section className="space-y-6 pt-20 md:pt-28 border-t border-line">
|
<section className="space-y-6 pt-6 md:pt-10 border-t border-line">
|
||||||
<div className="flex justify-between items-end">
|
<div className="flex justify-between items-end">
|
||||||
<div>
|
<div>
|
||||||
<div className="font-mono text-xs text-ink-mute uppercase tracking-widest font-bold">
|
<div className="font-mono text-xs text-ink-mute uppercase tracking-widest font-bold">
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ export default function StandardizationPage() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container-content space-y-32 md:space-y-48 py-16 md:py-28">
|
<div className="container-content space-y-8 md:space-y-12 py-6 md:py-10">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<section className="space-y-3">
|
<section className="space-y-3">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
@@ -27,7 +27,7 @@ export default function StandardizationPage() {
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Standards Bodies Section */}
|
{/* Standards Bodies Section */}
|
||||||
<section className="space-y-12 pt-20 md:pt-28 border-t border-line">
|
<section className="space-y-12 pt-6 md:pt-10 border-t border-line">
|
||||||
{standardsBodies.map((body, idx) => (
|
{standardsBodies.map((body, idx) => (
|
||||||
<div key={idx} className="bg-paper p-8 rounded-lg border border-line space-y-6">
|
<div key={idx} className="bg-paper p-8 rounded-lg border border-line space-y-6">
|
||||||
<div className="flex flex-wrap justify-between items-start gap-4 border-b border-line pb-4">
|
<div className="flex flex-wrap justify-between items-start gap-4 border-b border-line pb-4">
|
||||||
|
|||||||
Reference in New Issue
Block a user