// Copyright 2024, Command Line Inc. // SPDX-License-Identifier: Apache-2.0 .notification-popover { padding: 8px 2px 8px 0px; display: flex; align-items: center; justify-content: center; button { width: 27px; height: 26px; display: flex; justify-content: center; i { font-size: 17px; } } } .notification-content { display: flex; width: 380px; padding: 10px 0 0; flex-direction: column; align-items: flex-start; column-gap: 8px; border-radius: 8px; border: 0.5px solid rgba(255, 255, 255, 0.12); background: #232323; box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.25); .divider { background: rgba(255, 255, 255, 0.08); height: 1px; width: 100%; } .header { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 10px 8px 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); span { color: var(--main-text-color); font-size: 14px; font-style: normal; font-weight: 600; line-height: 16px; } } .close-all-btn { font-size: 13px; font-style: normal; font-weight: 400; line-height: 16px; color: rgba(255, 255, 255, 0.4); } }