fix: button overlfow style

This commit is contained in:
Sean Yesmunt 2019-03-23 21:59:09 -04:00
parent d1c94b01e4
commit 70df697aab
2 changed files with 6 additions and 7 deletions

View file

@ -53,11 +53,6 @@
} }
} }
.button--link {
white-space: normal;
text-align: left;
}
// This is a hack and the extra styles are just so this is more specific than the @lbry/components styling // This is a hack and the extra styles are just so this is more specific than the @lbry/components styling
// Will make a PR there, but just doing it now for the release - Sean // Will make a PR there, but just doing it now for the release - Sean
[type='button'].button--inverse { [type='button'].button--inverse {

View file

@ -16,8 +16,7 @@
p { p {
font-size: 1.15rem; font-size: 1.15rem;
margin-bottom: var(--spacing-vertical-medium); margin-bottom: var(--spacing-vertical-medium);
white-space: pre-line; // word-break: break-all;
word-break: break-all;
svg { svg {
width: 1rem; width: 1rem;
@ -112,4 +111,9 @@
display: inline-block; display: inline-block;
} }
} }
button {
white-space: normal;
text-align: left;
}
} }