diff --git a/js/components/FooterEnd.js b/js/components/FooterEnd.js index f868698..7fae65f 100644 --- a/js/components/FooterEnd.js +++ b/js/components/FooterEnd.js @@ -10,13 +10,11 @@ export default function FooterEnd({ items, pageName }) {

Follow us:

- - - - - - - + + + + +
diff --git a/styles/components/fadeable.css b/styles/components/fadeable.css index ad72fe6..10aa714 100644 --- a/styles/components/fadeable.css +++ b/styles/components/fadeable.css @@ -1,23 +1,8 @@ .fadable { - position: relative; - - &::after { - transition: opacity 0.2s cubic-bezier(0.54, 0, 0.28, 1); - content: ''; - display: block; - width: 100%; - height: 100%; - position: absolute; - left: 0; - top: 0; - opacity: 0; - background: var(--color-gray-dark); - pointer-events: none; - } + opacity: 1; + transition: opacity 0.2s cubic-bezier(0.54, 0, 0.28, 1); &.is-faded { - &::after { - opacity: 1; - } + opacity: 0; } }