Skip to content

Commit

Permalink
Merge pull request #18 from ButterCMS/checklist-issues
Browse files Browse the repository at this point in the history
Checklist issues - calendar spacing, query after slash
  • Loading branch information
ViolanteCodes authored Aug 8, 2022
2 parents 97eabee + 5ef22f4 commit 63c4376
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ PathLocationStrategy.prototype.prepareExternalUrl = function(internal) {
if (url === '') {
return url;
}
if (url.includes('search/?') && url.endsWith('%2F')) {
return url.slice(0, -3);
}
if (url.includes('search?')) {
return url.replace('search?', 'search/?');
}
if (url.endsWith('/')) {
return url;
}
Expand Down
5 changes: 3 additions & 2 deletions src/app/pages/blog/components/blog/blog.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ <h2 class="blog-roll-card-header">
</a>
</li>
<li>
<a href="javascript:void(0)"><i
class="lni lni-calendar"></i>{{post.published | date: "MM. dd. YYYY hh:mm:ss"}}
<a href="javascript:void(0)">
<i class="lni lni-calendar"></i>
{{post.published | date: "MM. dd. YYYY hh:mm:ss"}}
</a>
</li>
<li *ngFor="let tag of post.tags">
Expand Down
7 changes: 5 additions & 2 deletions src/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -643,8 +643,8 @@ p {
transform: rotate(-130deg);
}
}
/*===========================
NAVBAR CSS
/*===========================
NAVBAR CSS
============================= */
.navbar-area {
position: absolute;
Expand Down Expand Up @@ -1312,6 +1312,9 @@ p {
display: inline-block;
margin-right: 12px;
}
.single-post-meta-info i, .blog-roll-card-meta-info i {
padding-right: 8px;
}
@media only screen and (min-width: 550px) {
.single-post-meta-info li a img, .blog-roll-card-meta-info li a img {
height: 35px;
Expand Down

1 comment on commit 63c4376

@vercel
Copy link

@vercel vercel bot commented on 63c4376 Aug 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.