Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react access scss variables

const appBarElement = document.querySelector('.appBar');
if (appBarElement) {
  const style = window.getComputedStyle(appBarElement);
  const position = style.getPropertyValue('position');
  console.log(position);
}
 
PREVIOUS NEXT
Tagged: #react #access #scss #variables
ADD COMMENT
Topic
Name
4+7 =