Compare commits
1 Commits
ce73256133
...
76947f749c
| Author | SHA1 | Date | |
|---|---|---|---|
|
76947f749c
|
4
.github/workflows/rust-check.yaml
vendored
4
.github/workflows/rust-check.yaml
vendored
@@ -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
|
||||
|
||||
12
src/styles/tailwind.config.js
Normal file
12
src/styles/tailwind.config.js
Normal 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
10
src/styles/tailwind.css
Normal file
@@ -0,0 +1,10 @@
|
||||
/* stylelint-disable */
|
||||
|
||||
/* noinspection CssInvalidAtRule */
|
||||
@tailwind base;
|
||||
/* noinspection CssInvalidAtRule */
|
||||
@tailwind components;
|
||||
/* noinspection CssInvalidAtRule */
|
||||
@tailwind utilities;
|
||||
|
||||
/* stylelint-enable */
|
||||
Reference in New Issue
Block a user