diff --git a/blog-client/src/App.css b/blog-client/src/App.css
index 4014cd7..5c2a0ad 100644
--- a/blog-client/src/App.css
+++ b/blog-client/src/App.css
@@ -5,3 +5,8 @@
text-align: center;
}
+.blog-title {
+ margin-bottom: 0;
+ margin-top: 0;
+}
+
diff --git a/blog-client/src/App.tsx b/blog-client/src/App.tsx
index 0c329a3..3d54b35 100644
--- a/blog-client/src/App.tsx
+++ b/blog-client/src/App.tsx
@@ -26,8 +26,8 @@ const App: React.FC = () => {
return (
-
Blog Client
-
Blog Client is a React application that consumes an API from Ruby on Rails.
+
Blog Client
+
Blog Client is a React application that consumes an article API from Ruby on Rails
);
diff --git a/blog-client/src/articles.css b/blog-client/src/articles.css
index 832f452..d48c749 100644
--- a/blog-client/src/articles.css
+++ b/blog-client/src/articles.css
@@ -1,4 +1,13 @@
.articles-ul {
padding-left: 0;
margin-top: 83px;
+}
+
+.article-body {
+ font-size: 0.75rem;
+}
+
+.article-header {
+ margin-top: 0;
+ margin-bottom: 0;
}
\ No newline at end of file
diff --git a/blog-client/src/components/articles.tsx b/blog-client/src/components/articles.tsx
index 1cc936c..a5a7f9e 100644
--- a/blog-client/src/components/articles.tsx
+++ b/blog-client/src/components/articles.tsx
@@ -20,8 +20,8 @@ const Articles: React.FunctionComponent = (props) => {
{props.articles.map((article, index) => (
-
{article.title}
-
{article.body}
+
{article.title}
+
{article.body}
))}