summaryrefslogtreecommitdiff
path: root/src/styles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles.ts')
-rw-r--r--src/styles.ts34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/styles.ts b/src/styles.ts
new file mode 100644
index 0000000..fe40a59
--- /dev/null
+++ b/src/styles.ts
@@ -0,0 +1,34 @@
+export const tabStyles = `
+ .lsfg-vk-tabs > div > div:first-child::before {
+ background: #0D141C;
+ box-shadow: none;
+ backdrop-filter: none;
+ }
+
+ .lsfg-vk-tabs [role="tabpanel"] {
+ padding-left: 8px !important;
+ padding-right: 8px !important;
+ }
+
+ .lsfg-vk-tabs [role="tablist"] {
+ display: flex;
+ flex-wrap: nowrap;
+ justify-content: center;
+ }
+
+ .lsfg-vk-tabs [role="tab"] {
+ flex: 0 1 auto;
+ min-width: 0;
+ box-sizing: border-box;
+ padding-left: 6px !important;
+ padding-right: 6px !important;
+ display: flex !important;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .lsfg-vk-tabs [role="tab"] svg {
+ display: block;
+ margin: 0;
+ }
+`;