waveterm/frontend/app/notification/notificationpopover.scss

65 lines
1.4 KiB
SCSS
Raw Normal View History

2024-11-16 06:26:16 +01:00
// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
.notification-popover {
padding: 8px 2px 8px 0px;
2024-11-16 06:26:16 +01:00
display: flex;
align-items: center;
2024-11-16 06:26:16 +01:00
justify-content: center;
button {
width: 27px;
height: 26px;
display: flex;
justify-content: center;
i {
font-size: 17px;
}
2024-11-16 06:26:16 +01:00
}
}
.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);
2024-11-16 06:26:16 +01:00
.divider {
background: rgba(255, 255, 255, 0.08);
height: 1px;
width: 100%;
}
2024-11-16 06:26:16 +01:00
.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);
2024-11-16 06:26:16 +01:00
span {
color: var(--main-text-color);
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 16px;
}
2024-11-16 06:26:16 +01:00
}
.close-all-btn {
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 16px;
color: rgba(255, 255, 255, 0.4);
}
2024-11-16 06:26:16 +01:00
}