mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
Merge pull request #315 from mewtaylor/issue/gh-289-overlapping-text
Fix GH-289: Allow white space to wrap in welcome text
This commit is contained in:
commit
4821383d00
3 changed files with 4 additions and 15 deletions
|
@ -19,7 +19,6 @@
|
||||||
a {
|
a {
|
||||||
display: block;
|
display: block;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
white-space: normal;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
|
@ -40,8 +40,10 @@ p.legal {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Links */
|
/* Links */
|
||||||
a {
|
p {
|
||||||
white-space: nowrap;
|
a {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a:link,
|
a:link,
|
||||||
|
|
|
@ -77,10 +77,6 @@ $base-bg: $ui-white;
|
||||||
min-width: 200px;
|
min-width: 200px;
|
||||||
max-width: 230px;
|
max-width: 230px;
|
||||||
|
|
||||||
a {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-info {
|
.card-info {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background-color: $base-bg;
|
background-color: $base-bg;
|
||||||
|
@ -203,10 +199,6 @@ $base-bg: $ui-white;
|
||||||
.studio {
|
.studio {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
|
||||||
a {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
@ -239,10 +231,6 @@ $base-bg: $ui-white;
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
a {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
img {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
max-width: 150px;
|
max-width: 150px;
|
||||||
|
|
Loading…
Reference in a new issue