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 table can't have width bug in scss file #109

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ Template hero sections
}

.parallax-bg {
background-image: url(../images/bg1_min.jpg);
background-image: url("http://opvf95u4n.bkt.clouddn.com/bg1.jpg");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JocobZling 这个链接的图片访问不了了, 还是用 /images 文件夹里面的吧。

background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
Expand Down Expand Up @@ -866,6 +866,7 @@ Pricing tables
padding: 10px;
text-align: center;
height: 100%;
width: 100%;
}

.portfolios-content:hover .portfolios-text {
Expand Down
3 changes: 3 additions & 0 deletions scss/_chapter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
margin-bottom: 0.2em;
}
}
table{
width: 100%;
}
}

.chapter-awesome__content {
Expand Down