We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f26421 commit aa0b798Copy full SHA for aa0b798
2 files changed
src/assets/styles/main.scss
@@ -38,7 +38,12 @@ $icon-font-path: '../icon-font' !default;
38
&:focus,
39
&:focus:before {
40
outline: none;
41
- text-shadow: 0 0 1em var(--color-text);
+ text-shadow:
42
+ 0 0 0.1em var(--color-accent),
43
+ 0 0 0.2em var(--color-accent),
44
+ 0 0 0.3em var(--color-accent),
45
+ 0 0 0.8em var(--color-text),
46
+ 0 0 1em var(--color-text);
47
}
48
49
src/plugins/cloudinary/models/video-source/video-source.js
@@ -77,7 +77,7 @@ class VideoSource extends BaseSource {
77
this.withCredentials = !!withCredentials;
78
this.getInitOptions = () => initOptions;
79
80
- this.poster(poster);
+ this.poster(poster, options);
81
this.sourceTypes(sourceTypes);
82
this.sourceTransformation(sourceTransformation);
83
this.info(info);
0 commit comments