/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/shared-docs/components/cookie-popup/cookie-popup.component.scss
59 строк
1 KB
Kam
feat(docs-infra): greet visitors with Angie in the cookie popup
15 июл 2026, 21:54
15 июл 2026, 21:54
6a3487f
Код
Авторство
О чём код?
:host { position: fixed; bottom: 0.5rem; right: 0.5rem; z-index: var(--z-index-cookie-consent); opacity: 0; visibility: hidden; animation: 1s linear forwards 0.5s fadeIn; } .docs-cookies-popup { padding: 1rem; background-color: var(--page-background); border: 1px solid var(--senary-contrast); border-radius: 0.25rem; font-size: 0.875rem; max-width: 265px; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1); .docs-cookies-popup-header { display: flex; gap: 0.75rem; align-items: center; } .docs-cookies-popup-angie { flex-shrink: 0; width: 52px; height: auto; } .docs-cookies-popup-actions { display: flex; gap: 0.5rem; align-items: center; width: 100%; margin-block-start: 1rem; .docs-primary-btn { flex: 1; } } p { margin-block: 0; color: var(--primary-contrast); } } @keyframes fadeIn { 100% { opacity: 100%; visibility: visible; } }