-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Css not being read in Vue Single File Component #26
Comments
oddly enough |
I figured it out...you need to remove scoped from style tag for vue single file components. This should definitely be mentioned in the docs, was about to bash my head in ;) |
is not work |
try the prefix /deep/ like so: /deep/ .typed{ |
Jesus Christ! Thank You! |
If you still want to use
That is the only thing that allowed me to set CSS rules to it. |
my best solution is
|
Thank you sooooo much...... couldn't figure it out AT ALL. |
It works for me , thanx 🙂 |
I have included the following css, but am still seeing the dynamically generated style for the .typed character as color: #000 black
.vue-typer{ font-family: 'Space Mono', monospace; } .vue-typer .custom.char.typed{ color: #FFF !important; }
The text was updated successfully, but these errors were encountered: