vue scoped css not working

CSS
//Depending on what you're using it's slightly different

<style scoped> or <style lang="css" scoped>

>>> .class-name .other-class {
	//styles
}

<style lang="scss" scoped>
::v-deep .class-name {
	.other-class {
		//styles
  	}
}
Source

Also in CSS: