summaryrefslogtreecommitdiff
path: root/app/javascript/styles/application.scss
blob: 72c1dc1002bac42aed4c50a7016d7e6c323b5247 (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
@import '~@fortawesome/fontawesome-free/scss/fontawesome';
@import '~@fortawesome/fontawesome-free/scss/regular';
@import '~@fortawesome/fontawesome-free/scss/solid';
@import '~@fortawesome/fontawesome-free/scss/brands';
@import '~bulma/bulma';
@import '~bourbon/core/bourbon';

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

header {
  min-height: 52px;
}

.spinner {
  margin: auto;
  width: 48px;
  height: 48px;
  animation: spinner 0.65s infinite steps(12);
}

.spinner svg {
  width: 48px;
  height: 48px;
}

.hide { display: none; }

.clipboard-button {
  display: none;
}

.clipboard--supported .clipboard-button {
  display: initial;
}

.my-audits-index {
  .attribute-truncate {
    @include ellipsis(200px);
  }
}

.my-mfas-new {
  #canvas {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}