Skip to content

Commit

Permalink
Fix internal button className
Browse files Browse the repository at this point in the history
  • Loading branch information
acquitelol committed Jan 15, 2024
1 parent f68058f commit 42ff0f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/core/components/buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export function SolidButton({ style, ...props }: Arguments<typeof BaseButton>[0]
return <BaseButton
{...props}
style={mergeStyles({ userSelect: 'none' }, style ?? {})}
className={'_ButtonBase_10evl_1 ' + '_FocusTarget_1nxry_1 '
+ '_ButtonMd_10evl_27 ' + '_ButtonBlue_10evl_51 '
+ '_ButtonContained_10evl_81 ' + (props.className ?? '')}
className={`_ButtonBase_19fx3_1 _FocusTarget_1nxry_1
_ButtonMd_19fx3_27 _ButtonBlue_19fx3_90
_ButtonContained_19fx3_122` + (props.className ?? '')}
/>;
}

Expand Down
1 change: 0 additions & 1 deletion src/types/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
declare module '@azalea/types' {
import { exfiltratedModules } from '@modules/data';
import { Navigation } from '@azalea/utilities';

export type MenuItem = {
text: string;
Expand Down

0 comments on commit 42ff0f3

Please sign in to comment.