fix: misc
This commit is contained in:
parent
745b374e3c
commit
355aa615b1
5 changed files with 13 additions and 21 deletions
|
@ -11,9 +11,6 @@ const BASE_URL = 'https://coryd.dev'
|
|||
|
||||
export default {
|
||||
// general
|
||||
trim: (string, limit) => {
|
||||
return string.length <= limit ? string : `${string.slice(0, limit)}...`
|
||||
},
|
||||
btoa: (string) => {
|
||||
return btoa(string)
|
||||
},
|
||||
|
@ -193,7 +190,7 @@ export default {
|
|||
const capitalizeFirstLetter = (string) => {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
}
|
||||
if (string === 'iOS' || string === 'macOS') return `#${string}`
|
||||
if (string === 'iOS' || string === 'macOS' || string === 'RSS') return `#${string}`
|
||||
if (!string.includes(' ')) return `#${capitalizeFirstLetter(string)}`
|
||||
return `#${string.split(' ').map(s => capitalizeFirstLetter(s)).join('')}`
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div class="main__title">
|
||||
<section class="main__title">
|
||||
<h1>
|
||||
{% if page.url != '/' %}
|
||||
<a href="/">{{ meta.siteName }}</a>
|
||||
|
@ -7,4 +7,4 @@
|
|||
{% endif %}
|
||||
</h1>
|
||||
{% render "partials/nav/menu.liquid", page:page, nav:nav %}
|
||||
</div>
|
||||
</section>
|
|
@ -1,5 +1,5 @@
|
|||
<nav
|
||||
class="menu--primary flex--centered flex--wrap justify--center"
|
||||
class="menu__primary flex--centered flex--wrap justify--center"
|
||||
aria-label="Primary site navigation">
|
||||
{% for link in nav.menu %}
|
||||
{% render "partials/nav/link.liquid", page:page, link:link.name, icon:link.icon %}
|
||||
|
|
|
@ -57,7 +57,6 @@ blockquote {
|
|||
|
||||
/* links */
|
||||
a {
|
||||
transition-property: color;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -73,11 +72,7 @@ a:active,
|
|||
:is(.main__title, footer nav:last-child) a:focus,
|
||||
:is(.main__title, footer nav:last-child) a:active {
|
||||
color: var(--accent-color-hover);
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active {
|
||||
transition-property: color;
|
||||
transition-timing-function: var(--transition-ease-in-out);
|
||||
transition-duration: var(--transition-duration-default);
|
||||
}
|
||||
|
@ -172,12 +167,12 @@ th {
|
|||
}
|
||||
|
||||
/* nav */
|
||||
.main__title nav {
|
||||
nav.menu__primary {
|
||||
gap: var(--sizing-sm);
|
||||
}
|
||||
|
||||
.main__title nav a,
|
||||
.main__title nav span {
|
||||
nav.menu__primary a,
|
||||
nav.menu__primary span {
|
||||
height: var(--sizing-xl);
|
||||
}
|
||||
|
||||
|
@ -441,7 +436,7 @@ li {
|
|||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.main__title nav {
|
||||
nav.menu__primary {
|
||||
gap: var(--sizing-md);
|
||||
}
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ eleventyExcludeFromCollections: true
|
|||
dynamicPermalink: false
|
||||
---
|
||||
{
|
||||
"subject": "acct:coryd@social.lol",
|
||||
"aliases": ["https://coryd.dev", "https://social.lol/@coryd", "https://social.lol/users/coryd"],
|
||||
"subject": "acct:cory@social.lol",
|
||||
"aliases": ["https://coryd.dev", "https://social.lol/@cory", "https://social.lol/users/cory"],
|
||||
"links": [
|
||||
{
|
||||
"rel": "http://webfinger.net/rel/avatar",
|
||||
|
@ -20,12 +20,12 @@ dynamicPermalink: false
|
|||
{
|
||||
"rel": "http://webfinger.net/rel/profile-page",
|
||||
"type": "text/html",
|
||||
"href": "https://social.lol/users/coryd"
|
||||
"href": "https://social.lol/users/cory"
|
||||
},
|
||||
{
|
||||
"rel": "self",
|
||||
"type": "application/activity+json",
|
||||
"href": "https://social.lol/users/coryd"
|
||||
"href": "https://social.lol/users/cory"
|
||||
},
|
||||
{
|
||||
"rel": "http://ostatus.org/schema/1.0/subscribe",
|
||||
|
|
Reference in a new issue