Skip to content

Commit

Permalink
fix: style issues brought up during 15th meeting (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
chosww authored Jan 17, 2025
1 parent d575c0b commit cf1f089
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions src/assets/styles/base/_base.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ h4 {
font-size: var(--step-2);
}

hr {
border-width: 0.125rem;
}

article > * + * {
margin-block-start: 2rem;
}

article ul,
article ol {
article ol,
section ul,
section ol {
padding-inline: 2rem;
}

Expand All @@ -46,12 +52,12 @@ section {
}

section:nth-of-type(even) {
background-color: var(--fl-bgColor, var(--color-indigo-100));
background-color: var(--fl-bgColor, white);
color: var(--fl-fgColor);
}

section:nth-of-type(odd) {
background-color: var(--fl-bgColor, var(--color-indigo-200));
background-color: var(--fl-bgColor, var(--color-indigo-100));
color: var(--fl-fgColor);
}

Expand Down Expand Up @@ -89,6 +95,7 @@ section:last-of-type:not(:first-of-type) {
.project__banner__header {
display: flex;
flex-direction: column;
gap: 3rem;
justify-content: center;
}

Expand All @@ -114,8 +121,6 @@ section:last-of-type:not(:first-of-type) {
}

.project__content {
display: grid;
grid-template-columns: 0 65%;
padding-block: var(--common-block-padding);
padding-inline: var(--common-inline-padding);
}
Expand Down Expand Up @@ -189,6 +194,7 @@ section:last-of-type:not(:first-of-type) {
}

.project__banner__header {
gap: unset;
justify-content: start;
}

Expand All @@ -205,4 +211,9 @@ section:last-of-type:not(:first-of-type) {
position: relative;
top: 25%;
}

.project__content {
display: grid;
grid-template-columns: 0 65%;
}
}

0 comments on commit cf1f089

Please sign in to comment.