NEO ENERGY METALS PLC IR

interim report · 2026-06-30

Download /* 1. Container Setup: Stack arrows and clip the overflow */ .button-arrow { display: grid; place-items: center; overflow: hidden; position: relative; } /* 2. Stack both SVGs in the exact same grid space with the slower 0.6s speed */ .button-arrow svg { grid-area: 1 / 1 / 2 / 2; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); } /* ========================================== NORMAL ARROW ONLY (Left-to-Right Animation) ========================================== */ /* Position secondary arrow to the left by default */ .button-arrow:not(.down) .arrow-secondary { transform: translateX(-150%); } /* On hover: Slide primary out to the right, secondary in to center */ .button-wrapper:hover .button-arrow:not(.down) .arrow-primary { transform: translateX(150%); } .button-wrapper:hover .button-arrow:not(.down) .arrow-secondary { transform: translateX(0%); } /* ========================================== DOWN ARROW (Animation Disabled) ========================================== */ /* Safely hide the secondary arrow if it exists inside a .down button */ .button-arrow.down .arrow-secondary { display: none; }

Source document

Loading document…
Download /* 1. Container Setup: Stack arrows and clip the overflow */ .button-arrow { display: grid; place-items: center; overflow: hidden; position: relative; } /* 2. Stack both SVGs in the exact same grid space with the slower 0.6s speed */ .button-arrow svg { grid-area: 1 / 1 / 2 / 2; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); } /* ========================================== NORMAL ARROW ONLY (Left-to-Right Animation) ========================================== */ /* Position secondary arrow to the left by default */ .button-arrow:not(.down) .arrow-secondary { transform: translateX(-150%); } /* On hover: Slide primary out to the right, secondary in to center */ .button-wrapper:hover .button-arrow:not(.down) .arrow-primary { transform: translateX(150%); } .button-wrapper:hover .button-arrow:not(.down) .arrow-secondary { transform: translateX(0%); } /* ========================================== DOWN ARROW (Animation Disabled) ========================================== */ /* Safely hide the secondary arrow if it exists inside a .down button */ .button-arrow.down .arrow-secondary { display: none; } — NEO ENERGY METALS PLC