feat(deploy): add font files for JetBrains Mono to enhance typography
All checks were successful
DEPLOY / deploy (push) Successful in 7s

feat(style.css): include JetBrains Mono font in CSS for improved text rendering
chore(deploy): add additional steps in the deployment workflow for better visibility
This commit is contained in:
Djalim Simaila 2025-01-17 14:58:56 +01:00
parent cb5cb75b6d
commit 3bcb290113
8 changed files with 11 additions and 0 deletions

View File

@ -10,9 +10,11 @@ jobs:
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
- name: deploy to server - name: deploy to server
uses: rejahrehim/rsync-deploy-with-proxy@v2.1.6 uses: rejahrehim/rsync-deploy-with-proxy@v2.1.6
env: env:

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,12 @@
@font-face {
font-family: JetBrainsMono;
src: url(static/assets/font/JetBrainsMono-Thin.woff2) format(woff2);
}
* {
font-family: JetBrainsMono;
}
body { body {
background-color: #282A36; background-color: #282A36;
display: flex; display: flex;