@vectara/vectara-ui 20.3.1 → 20.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,9 +2,12 @@ $tableResponsiveBreakpointMedium: 800px;
|
|
|
2
2
|
$tableResponsiveBreakpointSmall: 500px;
|
|
3
3
|
|
|
4
4
|
.vuiTableWrapper {
|
|
5
|
+
// Needed for responsive styles.
|
|
5
6
|
container-type: inline-size;
|
|
6
7
|
width: 100%;
|
|
7
8
|
position: relative;
|
|
9
|
+
// Enable horizontal scrolling for tables that are too wide for their container.
|
|
10
|
+
overflow-x: auto;
|
|
8
11
|
}
|
|
9
12
|
|
|
10
13
|
// Enable nesting tables inside other tables as expandable content.
|
package/lib/styles/index.css
CHANGED