Compare commits

..

1 Commits

Author SHA1 Message Date
1b9b0632b9 fix: Android bundle Docker compose build
Some checks failed
actionlint check / actionlint check (pull_request) Successful in 6s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 5s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 9s
GitLeaks check / GitLeaks check (pull_request) Successful in 11s
hadolint check / hadolint check (pull_request) Successful in 39s
htmlhint check / htmlhint check (pull_request) Successful in 35s
markdownlint check / markdownlint check (pull_request) Successful in 33s
Rust check / Rust check (pull_request) Failing after 25s
checkov check / checkov check (pull_request) Successful in 1m17s
Prettier check / Prettier check (pull_request) Successful in 29s
ShellCheck check / ShellCheck check (pull_request) Successful in 26s
yamllint check / yamllint check (pull_request) Successful in 22s
Stylelint check / Stylelint check (pull_request) Successful in 24s
2026-01-23 17:26:07 +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 */