diff --git a/src/assets/css/components/cta.scss b/src/assets/css/components/cta.scss index ed98b40..a3335ea 100644 --- a/src/assets/css/components/cta.scss +++ b/src/assets/css/components/cta.scss @@ -7,17 +7,26 @@ &--construction { @apply bg-construction; } - &--play { + &--button-icon { @apply relative; &:after { @apply absolute w-12 h-12 z-20 left-1/2 top-1/2; content: ""; transform: translate(-50%, -50%); - background-image: url("../../img/icon-play.svg"); background-position: center; background-size: contain; background-repeat: no-repeat; } } + &--play { + &:after { + background-image: url("../../img/icon-play.svg"); + } + } + &--next { + &:after { + background-image: url("../../img/arrow-next.svg"); + } + } }