fix(docs-infra): enable only vertical scrolling for contributors bio (#30991)
- `auto` will enable scrolling only when needed - `overflow-y` will ensure to keep the scrolling horizontally only PR Close #30991
This commit is contained in:
parent
574990e0fd
commit
82e0b4a4fb
|
@ -188,7 +188,7 @@ aio-contributor {
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin: 8px 16px;
|
margin: 8px 16px;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: scroll;
|
overflow-y: auto;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue