Skip to content

Commit 4dc5728

Browse files
committed
Fix logo size on small displays in personal header
1 parent c1d61b8 commit 4dc5728

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

sass/_header.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ body.admin-bar {
3939

4040
.navbar {
4141

42+
> .container {
43+
padding-left: 0;
44+
}
45+
4246
&-main {
4347
border-bottom: 1px solid $darkgray;
4448
transition: 0.3s;
@@ -270,8 +274,6 @@ body {
270274
align-items: center;
271275

272276
@include media-breakpoint-down(sm) {
273-
height: 55px;
274-
width: 55px;
275277
padding: 8px;
276278
}
277279
}

template-parts/open-graph.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
?>
1717

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

0 commit comments

Comments
 (0)