this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix zine build error on macos

Altagos 61425bba 4a3f756b

+7
+6
build.zig
··· 2 2 const zine = @import("zine"); 3 3 4 4 pub fn build(b: *std.Build) !void { 5 + // Workaround for Zine's early return bug on macOS due to lazy dependencies 6 + const zine_dep = b.dependencyFromBuildZig(zine, .{}); 7 + if (zine_dep.builder.install_tls.step.dependencies.items.len == 0) { 8 + return; 9 + } 10 + 5 11 const compile_stylesheet = b.step("stylesheet", "Compile stylesheet from scss files"); 6 12 compile_stylesheet.result_cached = false; 7 13 std.debug.assert(try compile_stylesheet.addDirectoryWatchInput(b.path("style")));
+1
style/base/layout.scss
··· 7 7 background-color: var(--bg); 8 8 color: var(--fg); 9 9 scrollbar-color: var(--palette10) var(--bg-m3); 10 + scrollbar-gutter: stable; 10 11 11 12 font-size-adjust: ex-height 0.5; 12 13 -webkit-text-size-adjust: 100%;