refactor(ui): teams

This commit is contained in:
liyasthomas
2021-08-03 16:50:28 +05:30
parent 7d913b0ee7
commit 17192c898b
10 changed files with 208 additions and 173 deletions

View File

@@ -118,7 +118,7 @@ a {
}
.popover-theme {
@apply bg-primary;
@apply bg-popover;
@apply text-secondary;
@apply p-2;
@apply shadow-lg;
@@ -126,19 +126,19 @@ a {
}
&[x-placement^="top"] .tippy-tooltip .tippy-arrow {
@apply border-t-primary;
@apply border-t-popover;
}
&[x-placement^="bottom"] .tippy-tooltip .tippy-arrow {
@apply border-b-primary;
@apply border-b-popover;
}
&[x-placement^="left"] .tippy-tooltip .tippy-arrow {
@apply border-l-primary;
@apply border-l-popover;
}
&[x-placement^="right"] .tippy-tooltip .tippy-arrow {
@apply border-r-primary;
@apply border-r-popover;
}
}

View File

@@ -27,6 +27,8 @@
--error-color: theme("colors.dark.800");
// Tooltip color
--tooltip-color: theme("colors.true-gray.100");
// Popover color
--popover-color: theme("colors.true-gray.800");
// Editor theme
--editor-theme: "merbivore_soft";
}
@@ -54,6 +56,8 @@
--error-color: theme("colors.blue-gray.700");
// Tooltip color
--tooltip-color: theme("colors.blue-gray.800");
// Popover color
--popover-color: theme("colors.white");
// Editor theme
--editor-theme: "textmate";
}
@@ -81,6 +85,8 @@
--error-color: theme("colors.dark.800");
// Tooltip color
--tooltip-color: theme("colors.true-gray.100");
// Popover color
--popover-color: theme("colors.dark.700");
// Editor theme
--editor-theme: "twilight";
}