]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/blob
8370b7c10e317ba33d3badd417291be46da02e47
[ceph-ci.git] /
1 @use '@carbon/styles/scss/theme';
2 @use '@carbon/styles/scss/spacing';
3 @use '@carbon/styles/scss/themes';
4 @use '@carbon/styles/scss/theme' as *;
5
6 .notification-panel {
7   @include theme.theme(themes.$g10);
8
9   position: absolute;
10   top: spacing.$spacing-09;
11   right: 0;
12   width: 400px;
13   height: 700px;
14   background-color: $layer-01;
15   box-shadow: $shadow;
16   border: 1px solid $border-subtle-01;
17   z-index: 6000;
18   color: $text-primary;
19   display: flex;
20   flex-direction: column;
21   overflow: hidden;
22
23   cd-notification-header {
24     flex: 0 0 auto;
25   }
26
27   cd-notification-area {
28     flex: 1 1 auto;
29     overflow-y: auto;
30     min-height: 0; // Failing in firefox without this
31   }
32 }