summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/styles/ceph-custom/_toast.scss
blob: ac2487cbb8170b8118d96a85df4f3cc037579f22 (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
@use './src/styles/vendor/variables' as vv;

#toast-container {
  margin-top: 2vw;

  @media (max-width: 1600px) {
    margin-top: 2.5vw;
  }

  @media (max-width: vv.$screen-md-max) {
    margin-top: 9vw;
  }

  @media (max-width: 900px) {
    margin-top: 10vw;
  }

  @media (max-width: 319px) {
    margin-top: 11vw;
  }

  @media (max-width: 260px) {
    margin-top: 14vw;
  }
}

.toast-message > ul {
  margin: 0;
  padding-left: 1rem;
}