summaryrefslogtreecommitdiff
path: root/docs/.vuepress/styles
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-11-04 01:48:08 +0300
committerDerick Montague <derick.montague@ibm.com>2020-11-07 01:23:09 +0300
commit111325b199f8cc1741958fd645522858bdca55f4 (patch)
tree69d87a00e3a7da2b56ad7f13caea006fb1558734 /docs/.vuepress/styles
parentec4f190453c682dc1c0f773a2ecfaf720de2fcd2 (diff)
downloadwebui-vue-111325b199f8cc1741958fd645522858bdca55f4.tar.xz
Add documentation for table component
Adds Table documentation page under Components section with an example of how to create a basic table. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I9033fae662bd46d301edfb02d8a5c108e05017c6
Diffstat (limited to 'docs/.vuepress/styles')
-rw-r--r--docs/.vuepress/styles/palette.styl17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/.vuepress/styles/palette.styl b/docs/.vuepress/styles/palette.styl
new file mode 100644
index 00000000..fc4f27eb
--- /dev/null
+++ b/docs/.vuepress/styles/palette.styl
@@ -0,0 +1,17 @@
+
+// VuePress Theme overrides
+// Needed for table component to render correctly.
+
+tr:nth-child(2n)
+ background-color transparent
+table
+ border-collapse collapse
+ z-index 0 !important
+ width 100%
+ display table
+th
+ border-right transparent
+ border-left transparent
+ text-align left
+td
+ border none \ No newline at end of file