moved images from assets to public
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good

This commit is contained in:
2022-02-02 19:48:07 +01:00
parent 25b05e9b31
commit 12ea324367
362 changed files with 226 additions and 251 deletions

View File

@@ -3,7 +3,7 @@
<div class="head pt-4 pb-4">
<img alt="logo"
class="logo mt-lg-5 mt-3 mb-3"
src="/logo.svg">
src="/images/logo.svg">
<h3 class="mb-lg-4">Open source CSGO data platform</h3>
</div>
<div v-if="recentVisited !== null" class="recent-search mt-5 mb-5 row gap-2 justify-content-center">
@@ -113,12 +113,12 @@ export default {
.main-content {
.head {
// display jpg
background-image: url("../assets/images/map_screenshots/default.jpg");
background-image: url("/images/map_screenshots/default.jpg");
}
.head {
// display webp if possible
background-image: url("../assets/images/map_screenshots/default.webp");
background-image: url("/images/map_screenshots/default.webp");
background-repeat: no-repeat;
background-size: cover;
background-position: center;