filter sidebar

This commit is contained in:
2024-04-26 18:29:12 +05:00
parent 9377b3241f
commit c26d766429
13 changed files with 254 additions and 10 deletions
+7 -3
View File
@@ -2,7 +2,8 @@ import { ButtonStyle } from "../types/button";
const backgroundColors: ButtonStyle = {
cta: "bg-[#00BED7] hover:bg-[#00A8BE]",
primary: "bg-[#ffffff] hover:bg-[#F3F3F2]",
primary: "bg-[#ffffff] hover:bg-[#F3F3F2] active:bg-[#fff]",
secondary: "bg-[#ffffff] hover:bg-[#F3F3F2] active:bg-[#fff]",
tertiary: "bg-[#0D192266] hover:bg-[#0D1922B2]",
fab: "bg-[#ffffff] hover:bg-[#F3F3F2]",
};
@@ -10,20 +11,23 @@ const backgroundColors: ButtonStyle = {
const textColors: ButtonStyle = {
cta: "text-[#ffffff]",
primary: "text-[#0D1922]",
secondary: "text-[#0D1922]",
tertiary: "text-[#ffffff]",
fab: "text-[#ffffff]",
};
const borders: ButtonStyle = {
cta: "rounded-lg",
primary: "rounded-lg",
primary: "rounded-lg border border-[#ffffff] active:border-[#00BED7]",
secondary: "rounded-lg border border-[#E2E2DC] active:border-[#00BED7]",
tertiary: "rounded-full",
fab: "rounded-full",
};
const paddings = {
const paddings: ButtonStyle = {
cta: "py-3 px-6",
primary: "py-3 px-6",
secondary: "py-3 px-6",
tertiary: "py-1 px-3",
fab: "py-3 px-6",
};