Project import generated by Copybara.
GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/node_modules/material-design-lite/src/layout/snippets/scrollable-tabs.html b/node_modules/material-design-lite/src/layout/snippets/scrollable-tabs.html
new file mode 100644
index 0000000..822863a
--- /dev/null
+++ b/node_modules/material-design-lite/src/layout/snippets/scrollable-tabs.html
@@ -0,0 +1,41 @@
+<!-- Simple header with scrollable tabs. -->
+<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
+ <header class="mdl-layout__header">
+ <div class="mdl-layout__header-row">
+ <!-- Title -->
+ <span class="mdl-layout-title">Title</span>
+ </div>
+ <!-- Tabs -->
+ <div class="mdl-layout__tab-bar mdl-js-ripple-effect">
+ <a href="#scroll-tab-1" class="mdl-layout__tab is-active">Tab 1</a>
+ <a href="#scroll-tab-2" class="mdl-layout__tab">Tab 2</a>
+ <a href="#scroll-tab-3" class="mdl-layout__tab">Tab 3</a>
+ <a href="#scroll-tab-4" class="mdl-layout__tab">Tab 4</a>
+ <a href="#scroll-tab-5" class="mdl-layout__tab">Tab 5</a>
+ <a href="#scroll-tab-6" class="mdl-layout__tab">Tab 6</a>
+ </div>
+ </header>
+ <div class="mdl-layout__drawer">
+ <span class="mdl-layout-title">Title</span>
+ </div>
+ <main class="mdl-layout__content">
+ <section class="mdl-layout__tab-panel is-active" id="scroll-tab-1">
+ <div class="page-content"><!-- Your content goes here --></div>
+ </section>
+ <section class="mdl-layout__tab-panel" id="scroll-tab-2">
+ <div class="page-content"><!-- Your content goes here --></div>
+ </section>
+ <section class="mdl-layout__tab-panel" id="scroll-tab-3">
+ <div class="page-content"><!-- Your content goes here --></div>
+ </section>
+ <section class="mdl-layout__tab-panel" id="scroll-tab-4">
+ <div class="page-content"><!-- Your content goes here --></div>
+ </section>
+ <section class="mdl-layout__tab-panel" id="scroll-tab-5">
+ <div class="page-content"><!-- Your content goes here --></div>
+ </section>
+ <section class="mdl-layout__tab-panel" id="scroll-tab-6">
+ <div class="page-content"><!-- Your content goes here --></div>
+ </section>
+ </main>
+</div>