for example if I want to change all of the button styles at once I can do it within the UI interface. perhaps it must be done through variables, i'm just not familiar with radix and haven't taken a look at the documentation
<style> @keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOutOverlay { from { opacity: 1; } to { opacity: 0; } }
@keyframes slideInContent { from { transform: translateX(-100%); /* Start off-screen to the left /} to { transform: translateX(0); / Slide in from the left /}}@keyframes slideOutContent { from { transform: translateX(0); / Start on-screen /} to { transform: translateX(-100%); / Slide out to the right */ } }