styled more posts navigation position in archive view

This commit is contained in:
jorge-vitrubio 2023-01-28 14:37:13 +01:00
parent 9571fbb5a9
commit cf9deef323
7 changed files with 12 additions and 8 deletions

View File

@ -1357,6 +1357,7 @@ Add your custom styles in this file so it is easier to update the theme.
.edit-post-visual-editor__content-area .posts-navigation, .site-main
.edit-post-visual-editor__content-area .post-navigation {
margin: 0 0 1.5em;
align-self: end;
}
.edit-post-visual-editor__content-area .comment-navigation .nav-links,
@ -1374,7 +1375,6 @@ Add your custom styles in this file so it is easier to update the theme.
.edit-post-visual-editor__content-area .comment-navigation .nav-next,
.edit-post-visual-editor__content-area .posts-navigation .nav-next,
.edit-post-visual-editor__content-area .post-navigation .nav-next {
text-align: end;
flex: 1 0 50%;
}

File diff suppressed because one or more lines are too long

View File

@ -35,7 +35,8 @@ get_header();
get_template_part( 'template-parts/section', 'eachpost' );
endwhile;
the_posts_navigation();
else :

View File

@ -31,14 +31,16 @@ get_header();
endwhile;
echo '</content>';//end content ajuts
the_posts_navigation();
echo '</content>';//end content ajuts
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
?>
</main><!-- #main -->

View File

@ -315,6 +315,7 @@
.site-main & {
margin: 0 0 1.5em;
align-self: end;
}
.nav-links {
@ -326,7 +327,7 @@
}
.nav-next {
text-align: end;
//text-align: end;
flex: 1 0 50%;
}
}

View File

@ -1292,6 +1292,7 @@ textarea {
.posts-navigation, .site-main
.post-navigation {
margin: 0 0 1.5em;
align-self: end;
}
.comment-navigation .nav-links,
@ -1309,7 +1310,6 @@ textarea {
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
text-align: end;
flex: 1 0 50%;
}

File diff suppressed because one or more lines are too long