use 100% rather than auto with for reply tile width (#9924)
This commit is contained in:
parent
22a2a93751
commit
62913218d2
1 changed files with 2 additions and 1 deletions
|
@ -32,11 +32,12 @@ limitations under the License.
|
||||||
grid-template:
|
grid-template:
|
||||||
"sender" auto
|
"sender" auto
|
||||||
"message" auto
|
"message" auto
|
||||||
/ auto;
|
/ 100%;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: $secondary-content;
|
color: $secondary-content;
|
||||||
transition: color ease 0.15s;
|
transition: color ease 0.15s;
|
||||||
gap: 2px;
|
gap: 2px;
|
||||||
|
max-width: 100%; // avoid overflow with wide content
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $primary-content;
|
color: $primary-content;
|
||||||
|
|
Loading…
Reference in a new issue