Fellas, I've tried to style my parent class but inside the child component within the scoped style like this
Child component
<style lang="sass" scoped>
.public-page
overflow: unset
</style>
which parent component class looks like this
.public-page
flex: 1
overflow: hidden
width: 100vw
font-size: 14px !important
color: #233142
is it possible to do it? Thanks in advance
No.
html5's <style scoped>
had a brief and useful life but is no more. It was obsoleted. Some discussion at What is the current state of the "scoped" attribute for the style element in HTML5?
Vue.js's <style scoped> applies to the current component.