diff options
author | Guillermo Ramos | 2025-02-21 23:00:07 +0100 |
---|---|---|
committer | Guillermo Ramos | 2025-02-23 16:54:46 +0100 |
commit | 42361110cfcf394f2224bf5c719ee1986a54d04c (patch) | |
tree | a2314cfa87e1b27f1b159c2dd065b44d06c651e5 /front/src | |
parent | 8ddaf061ce46b5579c9461e4503b24bac72d7ccf (diff) | |
download | hiccup-42361110cfcf394f2224bf5c719ee1986a54d04c.tar.gz |
Fix colors
Diffstat (limited to 'front/src')
-rw-r--r-- | front/src/Main.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/front/src/Main.elm b/front/src/Main.elm index 15a0bd6..62ed651 100644 --- a/front/src/Main.elm +++ b/front/src/Main.elm @@ -207,7 +207,7 @@ butAttrs = clickableAttrs : Msg -> List (Attribute Msg) clickableAttrs msg = - [ onClick msg, class "text-blue-800", style "cursor" "pointer" ] + [ onClick msg, class "text-lime-600", style "cursor" "pointer" ] |