Skip to content

Commit

Permalink
fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
anemne committed Nov 6, 2024
1 parent 7758a8a commit d74fa92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ export default function TextSection({ section }: TextSectionProps) {
<div
className={
styles.content +
(section.textBlockType === "highlighted"
? ` ${styles.highlighted}`
: "")
(section.textBlockType === "framed" ? ` ${styles.highlighted}` : "")
}
>
<div className={styles.innerContent}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
height: fit-content;
}
.header {
/* TODO: this needs to be changed */
margin-top: 0px;
margin-bottom: 16px;
}

Expand Down

0 comments on commit d74fa92

Please sign in to comment.