diff --git a/Makefile b/Makefile index 83adcef28..aa90e49b5 100644 --- a/Makefile +++ b/Makefile @@ -1147,6 +1147,10 @@ clean: rm -rvf *.a *.dll *.so *.dot find ggml src common tests examples pocs -type f -name "*.o" -delete find ggml src common tests examples pocs -type f -name "*.d" -delete + find examples/server -type f -name "*.js.hpp" -delete + find examples/server -type f -name "*.mjs.hpp" -delete + find examples/server -type f -name "*.css.hpp" -delete + find examples/server -type f -name "*.html.hpp" -delete # # Examples diff --git a/examples/server/public/index.html b/examples/server/public/index.html index c54260867..75eaabb61 100644 --- a/examples/server/public/index.html +++ b/examples/server/public/index.html @@ -25,6 +25,12 @@ .bg-base-200 {background-color: var(--fallback-b2,oklch(var(--b2)/1))} .bg-base-300 {background-color: var(--fallback-b3,oklch(var(--b3)/1))} .text-base-content {color: var(--fallback-bc,oklch(var(--bc)/1))} + .text-error {color: var(--fallback-er,oklch(var(--er)/1))} + .menu > li { + border-radius: var(--rounded-btn, .5rem); + @apply cursor-pointer; + &:hover {background-color: var(--fallback-b3,oklch(var(--b3)/1))} + } .show-on-hover { @apply opacity-0 group-hover:opacity-100; } @@ -69,25 +75,24 @@