fix(ui-toolkit): remove calt from nav and toasts (#3020)

This commit is contained in:
Matthew Russell 2023-02-27 15:21:17 -08:00 committed by GitHub
parent 4eb6e09bd4
commit 69a0830e80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ export const Nav = ({
title, title,
}: NavbarProps) => { }: NavbarProps) => {
const themeWrapperClasses = classNames( const themeWrapperClasses = classNames(
'w-full overflow-y-hidden overflow-x-auto md:overflow-x-hidden font-alpha calt lg:text-lg', 'w-full overflow-y-hidden overflow-x-auto md:overflow-x-hidden font-alpha lg:text-lg',
{ {
dark: navbarTheme === 'dark', dark: navbarTheme === 'dark',
} }

View File

@ -155,7 +155,7 @@ export const Toast = ({
'w-[320px] rounded-md overflow-hidden', 'w-[320px] rounded-md overflow-hidden',
'shadow-[8px_8px_16px_0_rgba(0,0,0,0.4)]', 'shadow-[8px_8px_16px_0_rgba(0,0,0,0.4)]',
'text-black dark:text-white', 'text-black dark:text-white',
'font-alpha calt text-[14px] leading-[19px]', 'font-alpha text-[14px] leading-[19px]',
// background // background
{ {
'bg-vega-light-100 dark:bg-vega-dark-100 ': intent === Intent.None, 'bg-vega-light-100 dark:bg-vega-dark-100 ': intent === Intent.None,