Compare commits

..

1 Commits

Author SHA1 Message Date
76947f749c fix: automatically reconnect after losing a WebSocket connection
Some checks failed
actionlint check / actionlint check (pull_request) Successful in 5s
checkov check / checkov check (pull_request) Successful in 47s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 5s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 5s
GitLeaks check / GitLeaks check (pull_request) Successful in 7s
hadolint check / hadolint check (pull_request) Successful in 7s
htmlhint check / htmlhint check (pull_request) Successful in 17s
markdownlint check / markdownlint check (pull_request) Successful in 18s
Prettier check / Prettier check (pull_request) Successful in 14s
Stylelint check / Stylelint check (pull_request) Successful in 1m15s
yamllint check / yamllint check (pull_request) Successful in 17s
Rust check / Rust check (pull_request) Has been cancelled
ShellCheck check / ShellCheck check (pull_request) Has been cancelled
2026-01-23 17:23:10 +01:00
3 changed files with 24 additions and 2 deletions

View File

@@ -21,9 +21,9 @@ jobs:
run: >
apt-get update && apt-get install -y
libgtk-3-dev=3.24.33-1ubuntu2.2
libjavascriptcoregtk-4.1-dev=2.50.4-0ubuntu0.22.04.1
libjavascriptcoregtk-4.1-dev=2.50.3-0ubuntu0.22.04.1
libsoup-3.0-dev=3.0.7-0ubuntu1
libwebkit2gtk-4.1-dev=2.50.4-0ubuntu0.22.04.1
libwebkit2gtk-4.1-dev=2.50.3-0ubuntu0.22.04.1
libxdo-dev=1:3.20160805.1-4
- name: Rust toolchain installation
uses: dtolnay/rust-toolchain@9bc92bc5598b4f3bec5d910d352094982cb0c3b9 # 1.92.0

View File

@@ -0,0 +1,12 @@
/** @type {import("tailwindcss").Config} */
module.exports = {
mode: "all",
content: ["./src/**/*.{rs,html,css}"],
theme: {
fontFamily: {
sans: ["Inter", "sans-serif"],
},
extend: {},
},
plugins: [],
};

10
src/styles/tailwind.css Normal file
View File

@@ -0,0 +1,10 @@
/* stylelint-disable */
/* noinspection CssInvalidAtRule */
@tailwind base;
/* noinspection CssInvalidAtRule */
@tailwind components;
/* noinspection CssInvalidAtRule */
@tailwind utilities;
/* stylelint-enable */