| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`CustomScrollbar renders correctly 1`] = `
- <div
- className="custom-scrollbars"
- style={
- Object {
- "height": "auto",
- "maxHeight": "100%",
- "minHeight": "0",
- "overflow": "hidden",
- "position": "relative",
- "width": "100%",
- }
- }
- >
- <div
- className="view"
- style={
- Object {
- "WebkitOverflowScrolling": "touch",
- "bottom": undefined,
- "left": undefined,
- "marginBottom": 0,
- "marginRight": 0,
- "maxHeight": "calc(100% + 0px)",
- "minHeight": "calc(0 + 0px)",
- "overflow": "scroll",
- "position": "relative",
- "right": undefined,
- "top": undefined,
- }
- }
- >
- <p>
- Scrollable content
- </p>
- </div>
- <div
- className="track-horizontal"
- style={
- Object {
- "display": "none",
- "height": 6,
- "position": "absolute",
- }
- }
- >
- <div
- className="thumb-horizontal"
- style={
- Object {
- "display": "block",
- "height": "100%",
- "position": "relative",
- }
- }
- />
- </div>
- <div
- className="track-vertical"
- style={
- Object {
- "display": "none",
- "position": "absolute",
- "width": 6,
- }
- }
- >
- <div
- className="thumb-vertical"
- style={
- Object {
- "display": "block",
- "position": "relative",
- "width": "100%",
- }
- }
- />
- </div>
- </div>
- `;
|