Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroryg <rg.rorygibson@gmail.com>2014-08-14 15:50:48 +0400
committerroryg <rg.rorygibson@gmail.com>2014-08-14 15:50:48 +0400
commit147df8c491b8357959687a012c08e2f52c2e7c45 (patch)
treedf59138954aa8ad793a19e31b9915f9b21644a29
parent57d552b71a996fd93a5f05a9b9446cad3dab2147 (diff)
parent555d3056c8a120ced0de007417aed78182dc024d (diff)
Merge pull request #56 from postblue/css-authorpage-width
Fix author-bio exceeding mobile screens
-rw-r--r--assets/css/style.css2
-rw-r--r--assets/sass/style.scss2
2 files changed, 2 insertions, 2 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index b646377..a9aeae6 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -399,7 +399,7 @@ table {
.author-bio {
margin: 20px auto 0;
text-align: center;
- width: 700px; }
+ max-width: 700px; }
/* ============================================================ */
/* Footer */
diff --git a/assets/sass/style.scss b/assets/sass/style.scss
index 2e5980d..3418578 100644
--- a/assets/sass/style.scss
+++ b/assets/sass/style.scss
@@ -453,7 +453,7 @@ table {
.author-bio {
margin: 20px auto 0;
text-align: center;
- width: 700px;
+ max-width: 700px;
}
/* ============================================================ */