Skip to content

Commit

Permalink
Merge branch 'master' into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
har79 committed Dec 8, 2024
2 parents ae8820f + 029ae00 commit 2594041
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 15 deletions.
4 changes: 2 additions & 2 deletions content/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
<h3 class="visually-hidden">Profiles</h3>
<ul class="profile-links">
<li>
<a href="https://www.linkedin.com/in/har79/">
<a class="profile-link" href="https://www.linkedin.com/in/har79/">
{{< icon "icons/brands/linkedin.svg" >}}linkedin.com/in/har79/
</a>
</li>
<li>
<a href="https://github.com/har79">
<a class="profile-link" href="https://github.com/har79">
{{< icon "icons/brands/github.svg" >}}github.com/har79
</a>
</li>
Expand Down
9 changes: 8 additions & 1 deletion layouts/partials/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@
{{ range site.Menus.main }}
{{ if .HasChildren }}
<li class="nav-group">
{{ partial "nav-item.html" (dict "context" . "page" $ "hasDropdown" true) }}
{{/* {{ partial "nav-item.html" (dict "context" . "page" $ "hasDropdown" true) }} */}}
<button class="nav-link">
{{ .Name }}
{{ partial "nav-dropdown.html" true }}
</button>
<ul>
<li>
<a href="{{ .URL }}" class="nav-link">All</a>
</li>
{{ range .Children }}
<li>
{{ partial "nav-item.html" (dict "context" . "page" $) }}
Expand Down
18 changes: 10 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@har79/web",
"private": true,
"version": "1.0.2",
"version": "1.0.4",
"description": "TODO",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -35,8 +35,8 @@
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"@har79/config": "github:har79/config",
"@har79/theme": "github:har79/theme",
"@har79/config": "^6.2.1",
"@har79/theme": "^0.6.4",
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"license-checker": "^25.0.1",
"npm-check-updates": "",
Expand Down
17 changes: 16 additions & 1 deletion src/sass/about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
@use 'const';

.me {
// Display
display: flex;

// Box
flex-flow: wrap;

> * {
// Box
margin-inline: 1rem;
}
}
Expand All @@ -16,21 +19,33 @@
height: const.$logo-width;
width: const.$logo-width;

// Box model
// Box
margin-block-end: 1rem;
border-radius: 50%;
}

.profile-name {
// Decoration
@include typography.title;
}

.profile-links {
// Box
padding: 0;

// Decoration
list-style: none;
}

.profile-link {
// Display
display: inline-flex;

// Box
align-items: center;

.fa-icon {
// Box
margin-inline-end: 0.5rem;
}
}

0 comments on commit 2594041

Please sign in to comment.