From 7b6dfeced445f6f86d4fe9859e647d6c4e87d8ed Mon Sep 17 00:00:00 2001 From: user Date: Fri, 5 Dec 2025 14:59:39 +0900 Subject: [PATCH 1/3] Update --font-sans variable for better cross-platform compatibility --- app/assets/stylesheets/_global.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/_global.css b/app/assets/stylesheets/_global.css index 414d4c696..7f9e567a6 100644 --- a/app/assets/stylesheets/_global.css +++ b/app/assets/stylesheets/_global.css @@ -10,7 +10,7 @@ --block-space-double: calc(var(--block-space) * 2); /* Text */ - --font-sans: system-ui; + --font-sans: -apple-system, BlinkMacSystemFont, sans-serif; --font-serif: ui-serif, serif; --font-mono: ui-monospace, monospace; From 0b1a25c6b9173cb2f59b335f7f3ec18815c9687e Mon Sep 17 00:00:00 2001 From: user Date: Sun, 7 Dec 2025 20:47:25 +0900 Subject: [PATCH 2/3] Ignore RubyMine project files in .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 38bd80d0d..7883e425c 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,6 @@ /config/credentials/*.key .DS_Store + +# IDEA folder +.idea/ \ No newline at end of file From 3cdcd3f00c2dd8c7c2c03918a77493cad043727e Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Mon, 8 Dec 2025 16:03:39 -0600 Subject: [PATCH 3/3] Should be in global gitignore --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7883e425c..38bd80d0d 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,3 @@ /config/credentials/*.key .DS_Store - -# IDEA folder -.idea/ \ No newline at end of file