fix(calendar): allow text to wrap and grow tile
Long meeting titles and urls can force text outside of the tile.
This commit is contained in:
parent
514175b1af
commit
72922130a2
|
@ -17,9 +17,9 @@
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
height: 100px;
|
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
|
min-height: 100px;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@
|
||||||
}
|
}
|
||||||
.navigate-section-list-tile-info {
|
.navigate-section-list-tile-info {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
.navigate-section-tile-title {
|
.navigate-section-tile-title {
|
||||||
@extend %navigate-section-list-tile-text;
|
@extend %navigate-section-list-tile-text;
|
||||||
|
|
Loading…
Reference in New Issue