Skip to content

Commit

Permalink
[Fix] Remove wrong link style for images
Browse files Browse the repository at this point in the history
  • Loading branch information
zhonger committed Apr 29, 2023
1 parent be4f9c5 commit 20f3aea
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
9 changes: 5 additions & 4 deletions assets/css/app.min.css

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

2 changes: 1 addition & 1 deletion assets/css/app.min.css.map

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions dev/sass/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,8 @@ a {
}
}
mjx-math {
overflow: scroll;
overflow-x: auto;
overflow-y: unset;
width: 100%;
}
.copy-container{
Expand Down Expand Up @@ -1359,7 +1360,7 @@ a {
a {
color: $color-f-dark;

&:before {
&:not([ref="gallery"]):before {
position: absolute;
top: 80%;
left: 0;
Expand Down Expand Up @@ -1471,11 +1472,13 @@ a {
z-index: 2;
&:hover {
text-decoration: none;
}
&:not([ref="gallery"]):hover {
&:before {
top: 0;
}
}
&:before {
&:not([ref="gallery"]):before {
content: "";
position: absolute;
top: 80%;
Expand Down

0 comments on commit 20f3aea

Please sign in to comment.