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 114bf97..d0b41a1 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ 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%)', }, },