0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00

style(ui): update notification style (#2265)

This commit is contained in:
simeng-li 2022-10-31 10:38:48 +08:00 committed by GitHub
parent 0f068d372c
commit ab9936c74e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 37 deletions

View file

@ -4,20 +4,30 @@
padding: _.unit(3) _.unit(4);
font: var(--font-body-2);
color: var(--color-type-primary);
background: var(--color-alert-99);
margin: 0 auto _.unit(2);
@include _.flex_row;
&:focus-visible {
outline: none;
}
}
.icon {
color: var(--color-alert-70);
.icon {
width: 20px;
height: 20px;
margin-right: _.unit(3);
}
&.alert {
background: var(--color-alert-99);
.icon {
color: var(--color-alert-70);
}
}
&.info {
background: var(--color-neutral-variant-80);
.icon {
color: var(--color-neutral-variant-60);
}
}
}
.message {
@ -26,8 +36,6 @@
}
.link {
text-decoration: underline;
cursor: pointer;
max-width: 20%;
}
@ -35,10 +43,4 @@
.notification {
border-radius: var(--radius);
}
.link {
&:hover {
color: var(--color-brand-default);
}
}
}

View file

@ -1,38 +1,23 @@
import classNames from 'classnames';
import { useTranslation } from 'react-i18next';
import InfoIcon from '@/assets/icons/info-icon.svg';
import { onKeyDownHandler } from '@/utils/a11y';
import TextLink from '../TextLink';
import * as styles from './index.module.scss';
type Props = {
className?: string;
message: string;
onClose: () => void;
type?: 'info' | 'alert';
};
const Notification = ({ className, message, onClose }: Props) => {
const { t } = useTranslation();
const Notification = ({ className, message, onClose, type = 'info' }: Props) => {
return (
<div className={classNames(styles.notification, className)}>
<div className={classNames(styles.notification, styles[type], className)}>
<InfoIcon className={styles.icon} />
<div className={styles.message}>{message}</div>
{/* eslint-disable-next-line jsx-a11y/anchor-is-valid */}
<a
role="button"
tabIndex={0}
className={styles.link}
onClick={onClose}
onKeyDown={onKeyDownHandler({
Esc: onClose,
Enter: onClose,
' ': onClose,
})}
>
{t('action.got_it')}
</a>
<TextLink text="action.got_it" className={styles.link} onClick={onClose} />
</div>
);
};

View file

@ -20,6 +20,7 @@
--color-neutral-95: #eff1f1;
--color-neutral-100: #fff;
--color-neutral-variant-60: #928f9a;
--color-neutral-variant-80: #e5e1ec;
--color-danger-30: #930006;
@ -104,6 +105,7 @@
--color-neutral-99: #191c1d;
--color-neutral-100: #000;
--color-neutral-variant-60: #928f9a;
--color-neutral-variant-80: #5f5d67;
--color-neutral-variant-90: #47464e;