Skip to content

Commit

Permalink
style: fix hover opacity on image anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
williarin committed Aug 26, 2021
1 parent 4340039 commit 0e6d19d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/sass/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ a {
text-decoration-thickness: 0.075em;
text-decoration-color: rgba(var(--color-primary-rgb), 0.4);

&:hover {
&:not(:has(img)):hover {
@apply opacity-80;
text-decoration-color: rgba(var(--color-primary-rgb), 0.8);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/public/build/entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"/bundles/numberninechapterone/build/main.7e5746af.js"
],
"css": [
"/bundles/numberninechapterone/build/main.40ffb428.css"
"/bundles/numberninechapterone/build/main.cdcc1237.css"
]
},
"product": {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Resources/public/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"build/main.css": "/bundles/numberninechapterone/build/main.40ffb428.css",
"build/main.css": "/bundles/numberninechapterone/build/main.cdcc1237.css",
"build/main.js": "/bundles/numberninechapterone/build/main.7e5746af.js",
"build/product.css": "/bundles/numberninechapterone/build/product.3b666e5e.css",
"build/product.js": "/bundles/numberninechapterone/build/product.29c2bd9b.js",
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const Encore = require('@symfony/webpack-encore');
const WatchExternalFilesPlugin = require('webpack-watch-files-plugin').default;
const path = require('path');

if (!Encore.isRuntimeEnvironmentConfigured()) {
Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');
Expand Down Expand Up @@ -48,7 +47,8 @@ Encore
verbose: true
}))
.configureDevServerOptions(options => {
options.firewall = false;
options.allowedHosts = 'all';
delete options.client;
})
;

Expand Down

0 comments on commit 0e6d19d

Please sign in to comment.