visortelle commented on code in PR #789:
URL: https://github.com/apache/pulsar-site/pull/789#discussion_r1488480431


##########
src/css/blog.css:
##########
@@ -0,0 +1,107 @@
+.blog-pagination-nav{
+    display: block;
+}
+
+.blog-pagination-nav a {
+    display: inline-block;
+    color: var(--text-color);
+    border-radius: 1rem;
+    margin-right: .5rem;
+}
+
+.blog-post-pagination-nav{
+    position: relative;
+    overflow-x: visible;
+    padding: 1rem 1rem 5rem 1rem;
+    background-color: var(--gray-5-);
+    color: var(--white) !important;
+    display: flex;
+}   
+.blog-post-pagination-nav::before{
+    content: " ";
+    position: absolute;
+    background-color: var(--gray-5-);
+    width: 200vw;
+    height: 100%;
+    top: 0;
+    z-index: -1;
+    left: -50vw;
+}
+
+.blog-post-pagination-nav > div{
+    width: 100%;
+    display: flex;
+    flex-direction: column;
+}
+
+.blog-post-pagination-nav a {
+    color: var(--white);
+    border-radius: 1rem;
+}
+
+.blog-post-pagination-nav .pagination-nav__link--next, 
.blog-post-pagination-nav .pagination-nav__link--prev{
+    text-align: left;
+    width: 100%;
+}
+
+.blog-post-pagination-nav .pagination-nav__link--next 
.pagination-nav__label::before, .blog-post-pagination-nav 
.pagination-nav__link--prev .pagination-nav__label::before{

Review Comment:
   We can increase readability by using the CSS selector per line formatting.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to