Skip to content
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
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "Actions: "
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout latest commit
uses: actions/checkout@v2
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Build
run: |
yarn install
yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions src/assets/icons/machines/mac-mini.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions src/assets/icons/matrix-wordmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions src/assets/icons/matrix.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 8 additions & 4 deletions src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<div class="flex BodyText items-center">
<a
target="_blank"
href="https://discord.com/invite/68MRhQu"
href="https://matrix.to/#/#space:t2linux.org"
class="flex items-center mx-4 linkhover my-2 md:my-0"
><img
src="../assets/icons/discord.svg"
class="mr-2"
src="../assets/icons/matrix.svg"
class="mr-2 matrix"
alt=""
/>Discord</a
/>Matrix</a
>
<a
target="_blank"
Expand Down Expand Up @@ -57,4 +57,8 @@ export default {};
.linkhover:hover {
@apply opacity-70;
}

.matrix {
filter: invert(1);
}
</style>
20 changes: 12 additions & 8 deletions src/components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@
</a>
<a
class="DiscordButton w-full"
href="https://discord.com/invite/68MRhQu"
href="https://matrix.to/#/#space:t2linux.org"
target="_blank"
>
<img
src="../assets/icons/discord-wordmark.svg"
src="../assets/icons/matrix-wordmark.svg"
alt=""
srcset=""
class="m-auto"
class="m-auto matrix"
/>
</a>
</nav>
Expand All @@ -92,14 +92,14 @@
<div class="md:block hidden">
<a
class="DiscordButton"
href="https://discord.com/invite/68MRhQu"
href="https://matrix.to/#/#space:t2linux.org"
target="_blank"
>
<img
src="../assets/icons/discord-wordmark.svg"
src="../assets/icons/matrix-wordmark.svg"
alt=""
srcset=""
class="m-auto w-auto"
class="m-auto w-auto matrix"
/>
</a>
</div>
Expand Down Expand Up @@ -132,9 +132,9 @@ export default {

<style>
.DiscordButton {
@apply w-full rounded flex transition-all ease-in-out duration-200 bg-neutral hover:bg-neutral-600 my-2 md:my-0;
@apply w-full rounded flex transition-all ease-in-out bg-white duration-200 my-2 md:my-0;
height: 50px;
width: 155px;
width: 120px;
}

.NavItem {
Expand All @@ -161,4 +161,8 @@ export default {
opacity: 0 !important;
transform: translateY(30px) !important;
}

.matrix {
filter: invert(1)
}
</style>
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2410,9 +2410,9 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0"

caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001271:
version "1.0.30001271"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001271.tgz#0dda0c9bcae2cf5407cd34cac304186616cc83e8"
integrity sha512-BBruZFWmt3HFdVPS8kceTBIguKxu4f99n5JNp06OlPD/luoAMIaIK5ieV5YjnBLH3Nysai9sxj9rpJj4ZisXOA==
version "1.0.30001765"
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001765.tgz"
integrity sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==

case-sensitive-paths-webpack-plugin@^2.3.0:
version "2.4.0"
Expand Down