Skip to content

Commit

Permalink
Merge pull request #22 from cibersheep/main
Browse files Browse the repository at this point in the history
Remove double semicolo
  • Loading branch information
mirus-ua authored Nov 18, 2024
2 parents fab58b1 + c66bfd3 commit 5452d52
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ languageCode = "en-us"
# Add it only if you keep the theme in the `themes` directory.
# Remove it if you use the theme as a remote Hugo Module.
theme = "re-terminal"
paginate = 5
pagination.pagerSize = 5

[params]
# dir name of your main content (default is `content/posts`).
Expand Down
2 changes: 1 addition & 1 deletion assets/css/logo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
align-items: center;
text-decoration: none;
background: var(--accent);
color: color-mix(in srgb, var(--accent), var(--accent-contrast-color) 90%);;
color: color-mix(in srgb, var(--accent), var(--accent-contrast-color) 90%);
padding: 5px 10px;
}
2 changes: 1 addition & 1 deletion assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ blockquote {

&.twitter-tweet {
position: relative;
background: color-mix(in srgb, var(--accent), transparent 90%);;
background: color-mix(in srgb, var(--accent), transparent 90%);
font: inherit;
color: inherit;
border: 1px solid var(--accent);
Expand Down
2 changes: 1 addition & 1 deletion assets/css/menu.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@mixin menu {
--shadow-color: color-mix(in srgb, var(--background), transparent 20%);;
--shadow-color: color-mix(in srgb, var(--background), transparent 20%);
display: none;
flex-direction: column;
--shadow: 0 10px var(--shadow-color), -10px 10px var(--shadow-color), 10px 10px var(--shadow-color);
Expand Down
2 changes: 1 addition & 1 deletion assets/css/pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
margin: 0 auto;
padding: 5px 10px;
background: var(--background);
color: color-mix(in srgb, var(--accent), transparent 70%);;
color: color-mix(in srgb, var(--accent), transparent 70%);
font-size: .8rem;
text-transform: uppercase;
text-decoration: none;
Expand Down
4 changes: 2 additions & 2 deletions assets/css/post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
&-meta {
font-size: 1rem;
margin-bottom: 10px;
color: color-mix(in srgb, var(--accent), transparent 30%);;
color: color-mix(in srgb, var(--accent), transparent 30%);

& > *:not(:first-child) {
&::before {
Expand Down Expand Up @@ -146,4 +146,4 @@ figure:has(.post-cover) {
& > figcaption {
margin-top: 0;
}
}
}
2 changes: 1 addition & 1 deletion demoSite/hugo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
baseurl = "https://re-terminal.nebrowser.com"
languageCode = "en-us"
# theme = "hugo-theme-re-terminal"
paginate = 5
pagination.pagerSize = 5

[params]
contentTypeName = "posts"
Expand Down

0 comments on commit 5452d52

Please sign in to comment.