summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/notifications-sidebar/notifications-sidebar.component.scss
blob: baa64fa1fcd9ec2894130a2a8137d891a8a3d46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@use './src/styles/vendor/variables' as vv;

:host {
  bottom: 10px;
  max-width: 90vw;
  position: fixed;
  right: -350px;
  top: vv.$navbar-height + 10px;

  transition: all 0.6s;

  width: 350px;

  z-index: 9;
}

:host.active {
  right: 20px;
}

.card {
  height: 100%;
}

.card-body {
  padding-left: 0;
  padding-right: 5px;
  padding-top: 3px;
}

ngx-simplebar {
  height: calc(100% - 42.2px);
}

.separator {
  background-color: vv.$gray-200;
  color: vv.$gray-600;
  font-size: 1rem;
  padding: 5px 12px;
}

.btn-block {
  width: 98%;
}

.btn-link .fa-trash-o {
  color: vv.$black;
}

table {
  width: 100%;
}

.row {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

hr {
  margin-bottom: 2px;
  margin-top: 2px;
}

.card-text {
  margin-right: 15px;
}