From 1c46c0d3b7604f9845781bf1873d15c0ffcad51c Mon Sep 17 00:00:00 2001 From: Natalia Klonowska Date: Thu, 24 Aug 2023 14:11:53 +0200 Subject: [PATCH 1/2] fix --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 114bf97..a2665b1 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,8 @@ giarddesign - + + From 0ada4960731ee4eb1505413c21ff0f9d77761e11 Mon Sep 17 00:00:00 2001 From: Natalia Klonowska Date: Thu, 24 Aug 2023 14:31:21 +0200 Subject: [PATCH 2/2] fix --- dist/output.css | 8 ++++---- index.html | 1 - tailwind.config.js | 8 ++++---- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/dist/output.css b/dist/output.css index 3ab2d3a..558a363 100644 --- a/dist/output.css +++ b/dist/output.css @@ -941,7 +941,7 @@ video { } .bg-about { - background-image: url("/images/photos/about.jpeg"); + background-image: url("../images/photos/about.jpeg"); } .bg-gradient { @@ -949,7 +949,7 @@ video { } .bg-intro { - background-image: url("/images/photos/intro.jpeg"); + background-image: url("../images/photos/intro.jpeg"); } .bg-none { @@ -1311,12 +1311,12 @@ video { } .after\:content-arrowDown::after { - --tw-content: url("/images/icons/arrow-down.svg"); + --tw-content: url("../images/icons/arrow-down.svg"); content: var(--tw-content); } .after\:content-arrowNav::after { - --tw-content: url("/images/icons/arrow-nav.svg"); + --tw-content: url("../images/icons/arrow-nav.svg"); content: var(--tw-content); } diff --git a/index.html b/index.html index a2665b1..d0b41a1 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,6 @@ giarddesign - diff --git a/tailwind.config.js b/tailwind.config.js index e90c4a4..88431d0 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -15,8 +15,8 @@ module.exports = { hoverGrey: '#808080', }, content: { - arrowNav: 'url("/images/icons/arrow-nav.svg")', - arrowDown: 'url("/images/icons/arrow-down.svg")', + arrowNav: 'url("../images/icons/arrow-nav.svg")', + arrowDown: 'url("../images/icons/arrow-down.svg")', }, boxShadow: { dark: '4px 4px 4px 4px rgba(0, 0, 0, 0.25)', @@ -31,8 +31,8 @@ module.exports = { ButtonCenter: 'calc(50% - 61.5px)', }, backgroundImage: { - intro: 'url("/images/photos/intro.jpeg")', - about: 'url("/images/photos/about.jpeg")', + intro: 'url("../images/photos/intro.jpeg")', + about: 'url("../images/photos/about.jpeg")', gradient: 'linear-gradient(360deg, #DCC1AB 0%, rgba(214, 183, 158, 0.00) 100%)', }, },