mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Tweaked style means we can have 100% width (well 99% otherwise we gain a horizontal scrollbar)
This commit is contained in:
parent
1507b39940
commit
37f1b4ba8a
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ module.exports = React.createClass({
|
|||
var self = this;
|
||||
if (prevEvent && prevEvent.getId() == this.state.readReceiptEventId) {
|
||||
var hr;
|
||||
hr = (<hr className="mx_RoomView_myReadMarker" style={{opacity: 1, width: '85%'}} ref={function(n) {
|
||||
hr = (<hr className="mx_RoomView_myReadMarker" style={{opacity: 1, width: '99%'}} ref={function(n) {
|
||||
self.readMarkerNode = n;
|
||||
}} />);
|
||||
readMarkerIndex = ret.length;
|
||||
|
|
Loading…
Reference in a new issue