Skip to content

Commit

Permalink
add missing semicolons in css
Browse files Browse the repository at this point in the history
  • Loading branch information
daattali committed Apr 16, 2024
1 parent c07c3ea commit b57d3d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/css/beautifuljekyll.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ a {
}
a:hover,
a:focus {
color: var(--hover-col)
color: var(--hover-col);
}
blockquote {
color: var(--mid-col);
Expand Down Expand Up @@ -342,7 +342,7 @@ img {
.navbar-custom .navbar-nav .nav-link:focus,
.navbar-custom .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-custom .navbar-nav .dropdown-menu .dropdown-item:focus {
color: var(--hover-col)
color: var(--hover-col);
}

.navbar-custom .avatar-container {
Expand Down Expand Up @@ -504,7 +504,7 @@ footer .footer-custom-content {
.post-preview a:focus,
.post-preview a:hover {
text-decoration: none;
color: var(--hover-col)
color: var(--hover-col);
}

.post-preview .post-title {
Expand Down Expand Up @@ -823,8 +823,8 @@ nav.top-nav-short-permanent ~ header > .intro-header.big-img {
.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus {
color: var(--page-col);
border: 1px solid var(--hover-col)
background-color: var(--hover-col)
border: 1px solid var(--hover-col);
background-color: var(--hover-col);
}

/* --- Tables --- */
Expand Down

0 comments on commit b57d3d4

Please sign in to comment.