From 6c6beeac5bda7c6247cee3d0e2b0d0036449d7f9 Mon Sep 17 00:00:00 2001 From: JocobZling <924798429@qq.com> Date: Sat, 2 May 2020 18:25:52 +0800 Subject: [PATCH 1/2] fix table can't have width bug --- css/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 467d067..9b01c71 100644 --- a/css/style.css +++ b/css/style.css @@ -681,7 +681,9 @@ Pricing tables .schedule td h4 { margin-bottom: 0.2em; } - +.schedule table{ + width: 100%; +} .chapter-awesome__content > span { display: flex; align-items: center; From 84f10213bd7640dea775425b766900909809c658 Mon Sep 17 00:00:00 2001 From: JocobZling <924798429@qq.com> Date: Sat, 2 May 2020 19:48:47 +0800 Subject: [PATCH 2/2] Fix table can't have width bug --- css/style.css | 6 ++++-- scss/_chapter.scss | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index 9b01c71..4128ff7 100644 --- a/css/style.css +++ b/css/style.css @@ -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"); background-repeat: no-repeat; background-attachment: fixed; background-size: cover; @@ -681,9 +681,10 @@ Pricing tables .schedule td h4 { margin-bottom: 0.2em; } -.schedule table{ +.schedule table { width: 100%; } + .chapter-awesome__content > span { display: flex; align-items: center; @@ -866,6 +867,7 @@ Pricing tables padding: 10px; text-align: center; height: 100%; + width: 100%; } .portfolios-content:hover .portfolios-text { diff --git a/scss/_chapter.scss b/scss/_chapter.scss index 6124305..b32adb7 100644 --- a/scss/_chapter.scss +++ b/scss/_chapter.scss @@ -53,6 +53,9 @@ margin-bottom: 0.2em; } } + table{ + width: 100%; + } } .chapter-awesome__content {