mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-19 05:50:23 +00:00
Fix overflowing text in Cards with word-wrap: break-word
This commit is contained in:
parent
ec56bbe6bf
commit
891bca435f
1 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,8 @@
|
|||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 0;
|
||||
word-wrap: break-word;
|
||||
background-color: $card-bg;
|
||||
border: $card-border-width solid $card-border-color;
|
||||
@include border-radius($card-border-radius);
|
||||
|
|
@ -20,7 +22,6 @@
|
|||
|
||||
.card-title {
|
||||
margin-bottom: $card-spacer-y;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.card-subtitle {
|
||||
|
|
|
|||
Loading…
Reference in a new issue