diff --git a/assets/css/app.css b/assets/css/app.css index 9fde003..64eb387 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -6,7 +6,7 @@ @import "syntax.css"; .search-hit { - color: #fb923c + color: #fb923c; } /* Alerts and form errors used by phx.new */ @@ -96,4 +96,23 @@ color: black; text-decoration: none; cursor: pointer; -} \ No newline at end of file +} + +/* Hide scrollbar for Chrome, Safari and Opera */ +.custom-scrollbar::-webkit-scrollbar { + width: 8px; + padding: 0px 4px 0px 4px; + margin-right: 12px; +} + +.custom-scrollbar::-webkit-scrollbar-thumb { + background-color: #888888; + border-radius: 12px; +} + +/* Hide scrollbar for IE, Edge and Firefox */ +.custom-scrollbar { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: 8px; /* Firefox */ + scrollbar-color: #888888 transparent; +} diff --git a/lib/ash_hq_web/pages/docs.ex b/lib/ash_hq_web/pages/docs.ex index a436de6..23ebb55 100644 --- a/lib/ash_hq_web/pages/docs.ex +++ b/lib/ash_hq_web/pages/docs.ex @@ -82,27 +82,29 @@ defmodule AshHqWeb.Pages.Docs do
-