diff --git a/src/assets/scss/main.scss b/src/assets/scss/main.scss
index 45f814b5b..cb2887728 100644
--- a/src/assets/scss/main.scss
+++ b/src/assets/scss/main.scss
@@ -7,6 +7,8 @@
font-display: swap;
}
+@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
+
blockquote {
@apply border-l;
@apply border-l-4;
@@ -23,10 +25,6 @@ body {
font-family: "Roboto", sans-serif;
}
-body h2 {
- font-family: "Roboto", sans-serif;
-}
-
h1 {
font-family: "Roboto", sans-serif;
}
@@ -35,10 +33,6 @@ body {
padding-top: 60px;
}
-body p {
- font-family: "Roboto", sans-serif;
-}
-
.act-link {
@apply bg-gray-300;
}
diff --git a/src/components/PostListItem.vue b/src/components/PostListItem.vue
index 5c9cb83d6..f2c58bb67 100644
--- a/src/components/PostListItem.vue
+++ b/src/components/PostListItem.vue
@@ -21,7 +21,20 @@
v-for="membership in record.memberships"
:key="membership.id"
:to="membership.path"
- class="text-xs bg-transparent hover:text-blue-700 py-1 px-2 mr-1 border hover:border-blue-500 border-gray-600 text-gray-700 rounded-full mb-2"
+ class="
+ text-xs
+ bg-transparent
+ hover:text-blue-700
+ py-1
+ px-2
+ mr-1
+ border
+ hover:border-blue-500
+ border-gray-600
+ text-gray-700
+ rounded-full
+ mb-2
+ "
>{{ membership.title }}
@@ -41,7 +54,13 @@