Skip to content

Commit

Permalink
Fix logo size on small displays in personal header (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
albig authored Aug 9, 2024
1 parent 2b90096 commit 50e6b54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions sass/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ body.admin-bar {

.navbar {

> .container {
padding-left: 0;
}

&-main {
border-bottom: 1px solid $darkgray;
transition: 0.3s;
Expand Down Expand Up @@ -270,8 +274,6 @@ body {
align-items: center;

@include media-breakpoint-down(sm) {
height: 55px;
width: 55px;
padding: 8px;
}
}
Expand Down
2 changes: 1 addition & 1 deletion template-parts/open-graph.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
?>

<!-- Facebook Meta Tags -->
<meta property="og:url" content="<?php esc_url( the_permalink() ); ?>">
<meta property="og:url" content="<?php the_permalink(); ?>">
<meta property="og:type" content="website">
<meta property="og:title" content="<?php echo esc_attr( get_the_title() ); ?>">
<meta property="og:description" content="<?php echo esc_attr( wp_strip_all_tags( (string) get_the_excerpt() ) ); ?>">
Expand Down

0 comments on commit 50e6b54

Please sign in to comment.