Skip to content

Commit

Permalink
Adding latest updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Lea authored and Tony Lea committed Oct 22, 2024
1 parent 1429de9 commit ec7befd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -275,4 +275,8 @@ ul.marquee li, ul.marquee2 li {
to {
transform: translateX(0%);
}
}

article > * {
overflow-wrap:anywhere;
}
4 changes: 2 additions & 2 deletions includes/keys.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div class="fixed bottom-0 left-0 z-[999999] hidden p-3 space-x-2 xl:flex">
<button @click="document.getElementById('prev-active-button').click()" @keydown.left.window="$el.classList.remove('opacity-90')" @keyup.left.window="$el.classList.add('opacity-90')" class="relative flex items-center justify-center w-10 h-10 font-medium border border-gray-200 rounded-md shadow-sm opacity-90 bg-gradient-to-b from-white to-gray-50">
<button @click="document.getElementById('prev-active-button').click()" @keydown.left.window="$el.classList.remove('opacity-90')" @keyup.left.window="$el.classList.add('opacity-90')" class="relative flex items-center justify-center w-10 h-10 dark:text-white font-medium border border-gray-200 rounded-md shadow-sm opacity-90 bg-gradient-to-b from-white to-gray-50 dark:from-gray-800 dark:to-gray-900 dark:border-gray-800">
<svg @keydown.left.window="$el.classList.remove('opacity-30')" @keyup.left.window="$el.classList.add('opacity-30')" class="flex-shrink-0 w-4 h-4 fill-current opacity-30" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path d="M163.06 40.61a8 8 0 0 0-8.72 1.73l-80 80a8 8 0 0 0 0 11.32l80 80A8 8 0 0 0 168 208V48a8 8 0 0 0-4.94-7.39Z"/></svg>
</button>
<button @click="document.getElementById('next-active-button').click()" @keydown.right.window="$el.classList.remove('opacity-90')" @keyup.right.window="$el.classList.add('opacity-90')" class="relative flex items-center justify-center w-10 h-10 font-medium border border-gray-200 rounded-md shadow-sm opacity-90 bg-gradient-to-b from-white to-gray-50">
<button @click="document.getElementById('next-active-button').click()" @keydown.right.window="$el.classList.remove('opacity-90')" @keyup.right.window="$el.classList.add('opacity-90')" class="relative flex items-center justify-center w-10 h-10 dark:text-white font-medium border border-gray-200 rounded-md shadow-sm opacity-90 bg-gradient-to-b from-white to-gray-50 dark:from-gray-800 dark:to-gray-900 dark:border-gray-800">
<svg @keydown.right.window="$el.classList.remove('opacity-30')" @keyup.right.window="$el.classList.add('opacity-30')" class="flex-shrink-0 w-4 h-4 fill-current opacity-30" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="none" d="M0 0h256v256H0z"/><path d="m181.66 122.34-80-80A8 8 0 0 0 88 48v160a8 8 0 0 0 13.66 5.66l80-80a8 8 0 0 0 0-11.32Z"/></svg>
</button>
</div>
2 changes: 1 addition & 1 deletion pages/docs/[content].html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<layout title="Wave · {frontmatter.title}" src="main.html">

<div class="border-t border-gray-200 dark:border-neutral-800">
<div class="flex items-start w-full px-6 mx-auto break-all max-w-7xl md:px-8 docs">
<div class="flex items-start w-full px-6 mx-auto max-w-7xl md:px-8 docs">

<include src="sidebar.html"></include>

Expand Down

0 comments on commit ec7befd

Please sign in to comment.