mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
0145e8fe99
The migration tool we used didn't take into account our formatting standards so I'm bulk-formatting the SCSS files to bring them back up to our standards. Basically this just changes the tab size for all the files.
65 lines
1.2 KiB
SCSS
65 lines
1.2 KiB
SCSS
// 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);
|
|
}
|
|
}
|