-
Notifications
You must be signed in to change notification settings - Fork 4
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
Reduced motion options for gifs and flashes #516
Conversation
src/main.js
Outdated
assets_root: `http://127.0.0.1:${port}/` | ||
}) | ||
const Store = require('electron-store') | ||
store = new Store() |
Check warning
Code scanning / CodeQL
Useless assignment to local variable Warning
972fb72
to
18feaf9
Compare
@@ -0,0 +1,107 @@ | |||
<template> | |||
<div class='media'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This extra div means Vue's scoping will break any external CSS that expected the MediaEmbed to be a plain <img>
. Can work around it on a case by case basis with ::v-deep, but that's gonna be super easy to forget to test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need GifSeeker to propagate CSS changes down to its img element somehow
Depends on #487