diff --git a/docs/docs/button.md b/docs/docs/button.md
index 83ad40e..4c90342 100644
--- a/docs/docs/button.md
+++ b/docs/docs/button.md
@@ -25,5 +25,10 @@ sidebar_label: Button
L
R
+
+
>
```
diff --git a/docs/docs/table.md b/docs/docs/table.md
new file mode 100644
index 0000000..4fb36c0
--- /dev/null
+++ b/docs/docs/table.md
@@ -0,0 +1,28 @@
+---
+id: table
+title: Table
+sidebar_label: Table
+---
+
+#### Rounded Corner table
+```html live
+<>
+
+
+ Firstname |
+ Lastname |
+ Age |
+
+
+ Jill |
+ Smith |
+ 50 |
+
+
+ Eve |
+ Jackson |
+ 94 |
+
+
+>
+```
diff --git a/docs/docs/tickmark.md b/docs/docs/tickmark.md
index 2a808b8..18831ae 100644
--- a/docs/docs/tickmark.md
+++ b/docs/docs/tickmark.md
@@ -19,6 +19,7 @@ sidebar_label: Tick Mark
+
>
```
diff --git a/docs/sidebars.js b/docs/sidebars.js
index 5b7c3e5..9735cd9 100755
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -37,6 +37,11 @@ module.exports = {
items: ["promise-h", "promise-v"],
},
"reinforcement",
+ {
+ type: "category",
+ label: "Table",
+ items: ["table"]
+ },
{
type: "category",
label: "Tabs",
diff --git a/src/components/Button/button.css b/src/components/Button/button.css
index 67fdcb4..242e0bb 100644
--- a/src/components/Button/button.css
+++ b/src/components/Button/button.css
@@ -28,7 +28,14 @@
@apply lil-w-16 lil-h-16 lil-rounded-full lil-bg-grey-150 lil-cursor-pointer lil-items-center lil-justify-center lil-flex lil-text-s-24;
}
+.lil-btn-round-white {
+ @apply lil-w-16 lil-h-16 lil-rounded-full lil-bg-white lil-cursor-pointer lil-items-center lil-border-sm lil-border-font-500 lil-justify-center lil-flex lil-text-s-24;
+}
+
+.lil-btn-round-white:hover,
+.lil-btn-round-white:focus,
.lil-btn-round:hover,
.lil-btn-round:focus {
- @apply lil-bg-blue-350 lil-text-white lil-outline-none;
+ @apply lil-bg-blue-350 lil-text-white lil-outline-none lil-border-none;
}
+
diff --git a/src/components/Common/common.css b/src/components/Common/common.css
index 60d1501..f8a7710 100644
--- a/src/components/Common/common.css
+++ b/src/components/Common/common.css
@@ -11,6 +11,13 @@ select {
@apply lil-rounded-lg lil-p-3;
}
+/*
+* - border-spacing not supported in tailwind
+*/
+.lil-border-spacing-0 {
+ border-spacing: 0;
+}
+
@screen xl {
.lil-container {
@apply lil-w-full;
diff --git a/src/components/Icons/tick.css b/src/components/Icons/tick.css
index 600ad4c..32334f3 100644
--- a/src/components/Icons/tick.css
+++ b/src/components/Icons/tick.css
@@ -7,3 +7,7 @@
top: -2px;
@apply lil-relative lil-w-1 lil-h-2 lil-border-b-sm lil-border-r-sm lil-border-font-200 lil-transform lil-rotate-45 lil-inline-block;
}
+
+.lil-tick-xl{
+ @apply lil-relative lil-w-2 lil-h-4 lil-border-b-md lil-border-r-md lil-border-green-200 lil-transform lil-rotate-45 lil-inline-block
+}
diff --git a/src/components/Table/table.css b/src/components/Table/table.css
new file mode 100644
index 0000000..eac419d
--- /dev/null
+++ b/src/components/Table/table.css
@@ -0,0 +1,18 @@
+/*
+* to make rounded corners by assigning border-radius for each corner cell
+*/
+.lil-table-round tr:first-child th:first-child {
+ @apply lil-rounded-tl-xl;
+}
+
+.lil-table-round tr:first-child th:last-child {
+ @apply lil-rounded-tr-xl;
+}
+
+.lil-table-round tr:last-child td:first-child {
+ @apply lil-rounded-bl-xl;
+}
+
+.lil-table-round tr:last-child td:last-child {
+ @apply lil-rounded-br-xl;
+}
diff --git a/src/index.css b/src/index.css
index 07e1617..58410a4 100644
--- a/src/index.css
+++ b/src/index.css
@@ -14,6 +14,7 @@
@import "./components/Promise/promise.css";
@import "./components/Reinforcement/reinforcement.css";
@import "./components/SideNav/sidenav.css";
+@import "./components/Table/table.css";
@import "./components/Tabs/tabs.css";
@import "./components/Tabs/lineTab.css";
@import "./components/Tabs/verticalPromiseTabs.css";