diff options
author | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-29 00:54:55 +0200 |
---|---|---|
committer | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-29 00:54:55 +0200 |
commit | 6cfa4e691fd176c4d7fa67b67307d86bddfd7eeb (patch) | |
tree | 5858552a4d31a26802b90d04e4f600181a9ccbe1 /frontend/src/styles | |
parent | 9d73bc044eaea6176556935a81db8e654476e6f1 (diff) |
Dodao responzivnost na dugmice za dodavanje i brisanje slojeva i neurona, ispravio BUG gde je bilo moguce dodati vise neurona za individualni sloj nego za sve slojeve.
Diffstat (limited to 'frontend/src/styles')
-rw-r--r-- | frontend/src/styles/theme.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/styles/theme.css b/frontend/src/styles/theme.css index a76f4714..ee7a2e61 100644 --- a/frontend/src/styles/theme.css +++ b/frontend/src/styles/theme.css @@ -54,11 +54,11 @@ a { .bubble { background-position: center; - transition: background 0.8s; + transition: background 0.2s; } .bubble:hover { - background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%; + background: var(--ns-primary-50) radial-gradient(circle, transparent 1%, var(--ns-accent) 1%) center/15000%; } .bubble:active { |