From 032e5cd8061da37817966b9fb053f565609502ef Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Sun, 27 Oct 2024 00:30:36 +0100 Subject: [PATCH] bootstrap chevron icon for custom selects --- apps/home/static/home/scss/index.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/apps/home/static/home/scss/index.scss b/apps/home/static/home/scss/index.scss index 4c77870..ca8e874 100644 --- a/apps/home/static/home/scss/index.scss +++ b/apps/home/static/home/scss/index.scss @@ -71,8 +71,23 @@ text-overflow: ellipsis; height: 100%; padding: 0.375rem 0.75rem; + padding-right: calc(1.5em + 0.75rem); cursor: pointer; + &::after { + + content: "\f282"; + font-family: "bootstrap-icons"; + font-weight: normal; + font-size: 1rem; + position: absolute; + right: calc(0.375em + 0.1875rem); + top: 50%; + transform: translateY(-50%); + pointer-events: none; + + } + } .corbz-select-dropdown {