Answers for "how to global variables css"

CSS
1

CSS Global variables

:root {
	--global--color-primary: #28303d;
}

a {
	color: var(--global--color-primary);
}

.social-icons a {
	background: var(--global--color-primary);
}
Posted by: Guest on June-25-2021

Code answers related to "how to global variables css"

Browse Popular Code Answers by Language