diff options
-rw-r--r-- | templates/components/header.html | 1 | ||||
-rw-r--r-- | templates/components/section.html | 2 | ||||
-rw-r--r-- | templates/home.html | 2 | ||||
-rw-r--r-- | templates/search_results.html | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/templates/components/header.html b/templates/components/header.html index dc79066..ddf72b3 100644 --- a/templates/components/header.html +++ b/templates/components/header.html @@ -4,7 +4,6 @@ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"> <!--<script src="https://kit.fontawesome.com/32c297b57b.js" crossorigin="anonymous"></script>--> <link href="/static/assets/fontawesome/css/fontawesome.min.css" rel="stylesheet"> -<link href="/static/assets/fontawesome/css/regular.min.css" rel="stylesheet"> <link href="/static/assets/fontawesome/css/solid.min.css" rel="stylesheet"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <link rel="manifest" href="/static/manifest.json"> diff --git a/templates/components/section.html b/templates/components/section.html index ca664fb..081e0e3 100644 --- a/templates/components/section.html +++ b/templates/components/section.html @@ -41,7 +41,7 @@ <div class="control is-expanded has-icons-left"> <input class="input" type="text" name="query" placeholder="Query" spellcheck="false"> <span class="icon is-left"> - <i class="fa-regular fa-magnifying-glass"></i> + <i class="fa-solid fa-magnifying-glass"></i> </span> </div> <div class="control"> diff --git a/templates/home.html b/templates/home.html index cec0969..06fe2e8 100644 --- a/templates/home.html +++ b/templates/home.html @@ -13,7 +13,7 @@ <div class="control is-expanded has-icons-left"> <input class="input is-large" type="text" name="query" placeholder="Query" spellcheck="false"> <span class="icon is-small is-left"> - <i class="fa-regular fa-magnifying-glass"></i> + <i class="fa-solid fa-magnifying-glass"></i> </span> </div> <div class="control"> diff --git a/templates/search_results.html b/templates/search_results.html index de38021..c3ea86d 100644 --- a/templates/search_results.html +++ b/templates/search_results.html @@ -23,7 +23,7 @@ <div class="control is-expanded has-icons-left"> <input class="input" type="text" name="query" value="{{.OriginalQuery.Query}}" placeholder="Search Query" spellcheck="false"> <span class="icon is-left"> - <i class="fa-regular fa-magnifying-glass"></i> + <i class="fa-solid fa-magnifying-glass"></i> </span> </div> <div class="control"> |