Design token updates.
This commit is contained in:
parent
de3bcc479a
commit
c6b970a621
13 changed files with 198 additions and 211 deletions
|
|
@ -75,7 +75,7 @@
|
|||
:to="`/series/${series._id}`"
|
||||
class="series-box"
|
||||
>
|
||||
<h3>{{ series.title }}</h3>
|
||||
<h2>{{ series.title }}</h2>
|
||||
<p class="series-desc">{{ series.description }}</p>
|
||||
<div class="series-meta">
|
||||
<span
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
<div class="full-section">
|
||||
<div class="section-label">Have an idea?</div>
|
||||
<DashedBox>
|
||||
<h3>Propose an Event</h3>
|
||||
<h2>Propose an Event</h2>
|
||||
<p>
|
||||
Members can propose events for any circle. Workshops, social hangs,
|
||||
talks, or anything else that serves the community.
|
||||
|
|
@ -187,11 +187,11 @@ const isAlmostFull = (event) => {
|
|||
|
||||
<style scoped>
|
||||
.hero {
|
||||
padding: 32px 32px 24px;
|
||||
padding: 32px 28px 24px;
|
||||
border-bottom: 1px dashed var(--border);
|
||||
}
|
||||
.hero h1 {
|
||||
font-family: "Brygada 1918", serif;
|
||||
font-family: var(--font-display);
|
||||
font-size: 28px;
|
||||
font-weight: 600;
|
||||
color: var(--text-bright);
|
||||
|
|
@ -207,7 +207,7 @@ const isAlmostFull = (event) => {
|
|||
|
||||
/* ---- EVENT LIST ---- */
|
||||
.event-list-full {
|
||||
padding: 0 32px;
|
||||
padding: 0 28px;
|
||||
border-bottom: 1px dashed var(--border);
|
||||
}
|
||||
|
||||
|
|
@ -272,7 +272,7 @@ const isAlmostFull = (event) => {
|
|||
}
|
||||
|
||||
.cancelled-tag {
|
||||
font-size: 9px;
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.07em;
|
||||
text-transform: uppercase;
|
||||
color: var(--ember);
|
||||
|
|
@ -326,7 +326,7 @@ const isAlmostFull = (event) => {
|
|||
gap: 4px;
|
||||
}
|
||||
.members-badge {
|
||||
font-size: 9px;
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.07em;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-faint);
|
||||
|
|
@ -338,7 +338,7 @@ const isAlmostFull = (event) => {
|
|||
|
||||
/* ---- FULL SECTION ---- */
|
||||
.full-section {
|
||||
padding: 32px;
|
||||
padding: 32px 28px;
|
||||
border-bottom: 1px dashed var(--border);
|
||||
}
|
||||
|
||||
|
|
@ -350,7 +350,7 @@ const isAlmostFull = (event) => {
|
|||
border: 1px dashed var(--border);
|
||||
}
|
||||
.series-box {
|
||||
padding: 20px;
|
||||
padding: 20px 24px;
|
||||
border-right: 1px dashed var(--border);
|
||||
text-decoration: none;
|
||||
transition: background 0.15s;
|
||||
|
|
@ -361,8 +361,8 @@ const isAlmostFull = (event) => {
|
|||
.series-box:hover {
|
||||
background: var(--surface-hover);
|
||||
}
|
||||
.series-box h3 {
|
||||
font-family: "Brygada 1918", serif;
|
||||
.series-box h2 {
|
||||
font-family: var(--font-display);
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
color: var(--text-bright);
|
||||
|
|
@ -383,8 +383,8 @@ const isAlmostFull = (event) => {
|
|||
}
|
||||
|
||||
/* ---- PROPOSE ---- */
|
||||
.full-section h3 {
|
||||
font-family: "Brygada 1918", serif;
|
||||
.full-section h2 {
|
||||
font-family: var(--font-display);
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
color: var(--text-bright);
|
||||
|
|
@ -431,6 +431,12 @@ const isAlmostFull = (event) => {
|
|||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hero,
|
||||
.event-list-full,
|
||||
.full-section {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.event-row {
|
||||
grid-template-columns: 70px 1fr;
|
||||
gap: 8px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue