Skip to content

Commit

Permalink
refactor(message-box): remove redundant !important
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiazom committed Jan 17, 2025
1 parent 0443034 commit 2e4c94a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/message-box/message-box.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
border-radius: token('border.radius.regular');
}
.subtle {
background-color: token('color.background.neutral.0.background') !important;
background-color: token('color.background.neutral.0.background');
border: none;
}
.content {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/global-messages/global-messages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { MessageBox } from '@atb/components/message-box';
import { getTextForLanguage, useTranslation } from '@atb/translations';
import { and } from '@atb/utils/css';
import { useActiveGlobalMessages } from './context';
import { GlobalMessageContextEnum, GlobalMessageType } from './types';
import { GlobalMessageContextEnum } from './types';
import style from './global-messages.module.css';
import { motion } from 'framer-motion';

Expand Down

0 comments on commit 2e4c94a

Please sign in to comment.