// install node sass
npm install node-sass
const appBarElement = document.querySelector('.appBar');
if (appBarElement) {
const style = window.getComputedStyle(appBarElement);
const position = style.getPropertyValue('position');
console.log(position);
}