-
- {title}
+
+
{title}
+
+
+ {duration}
+
+
{body}
diff --git a/src/templates/GuideTemplate.module.scss b/src/templates/GuideTemplate.module.scss
index 4c11e3781..7c8d923e6 100644
--- a/src/templates/GuideTemplate.module.scss
+++ b/src/templates/GuideTemplate.module.scss
@@ -1,6 +1,52 @@
.mdxContainer {
+ > *:first-child {
+ margin-top: 0;
+ }
+
+ code {
+ padding: 0.125rem;
+ background: var(--color-neutrals-200);
+ border-radius: 2px;
+ }
+
+ p:last-child {
+ margin-bottom: 0;
+ }
+ h1,
+ h2 {
+ &:not(:first-child) {
+ margin-top: 2rem;
+ }
+ }
+
+ h3,
+ h4 {
+ margin-top: 1rem;
+ }
+
+ li {
+ margin-bottom: 1rem;
+ }
+
ul li ul {
margin-top: 1rem;
line-height: 1;
}
}
+
+.header {
+ display: flex;
+ margin-bottom: 2rem;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.duration {
+ display: flex;
+ align-items: center;
+ color: var(--color-neutrals-600);
+}
+
+.clock {
+ margin-right: 0.25rem;
+}