Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove double semicolo #22

Merged
merged 6 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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