Skip to content
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

fix: after setting the background image, the button is obscured #1234

Merged
merged 3 commits into from Jun 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/render/tpl.js
Expand Up @@ -72,8 +72,8 @@ export function cover() {

return (
`<section class="cover show" style="background: ${bgc}">` +
'<div class="cover-main"><!--cover--></div>' +
'<div class="mask"></div>' +
'<div class="cover-main"><!--cover--></div>' +
'</section>'
);
}
Expand Down
1 change: 1 addition & 0 deletions src/themes/basic/_coverpage.styl
Expand Up @@ -22,6 +22,7 @@ section.cover
flex 1
margin -20px 16px 0
text-align center
position: relative

a
color inherit
Expand Down