1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

[EC-8] Extend maxWidth Tailwind theme config

This commit is contained in:
Shane Melton
2022-07-29 10:31:54 -07:00
parent 76bfd07b0f
commit 132f1f0c61
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
<a
class="tw-border tw-border-solid tw-border-secondary-300 tw-rounded tw-overflow-hidden tw-h-full tw-max-w-[18rem] tw-block !tw-text-main hover:tw-no-underline hover:tw-scale-105 tw-transition-all focus:tw-outline-none focus:tw-ring focus:tw-ring-offset-2 focus:tw-ring-primary-700"
class="tw-border tw-border-solid tw-border-secondary-300 tw-rounded tw-overflow-hidden tw-h-full tw-max-w-72 tw-block !tw-text-main hover:tw-no-underline hover:tw-scale-105 tw-transition-all focus:tw-outline-none focus:tw-ring focus:tw-ring-offset-2 focus:tw-ring-primary-700"
[routerLink]="route"
(click)="click()"
>

View File

@@ -68,6 +68,9 @@ module.exports = {
DEFAULT: theme("colors.background"),
...theme("colors"),
}),
maxWidth: ({ theme }) => ({
...theme("width"),
}),
},
plugins: [],
};