main
1@import '~@fortawesome/fontawesome-free/scss/fontawesome';
2@import '~@fortawesome/fontawesome-free/scss/regular';
3@import '~@fortawesome/fontawesome-free/scss/solid';
4@import '~@fortawesome/fontawesome-free/scss/brands';
5@import '~bulma/bulma';
6@import '~bourbon/core/bourbon';
7
8@keyframes spinner {
9 0% { transform: rotate(0deg); }
10 100% { transform: rotate(360deg); }
11}
12
13header {
14 min-height: 52px;
15}
16
17.spinner {
18 margin: auto;
19 width: 48px;
20 height: 48px;
21 animation: spinner 0.65s infinite steps(12);
22}
23
24.spinner svg {
25 width: 48px;
26 height: 48px;
27}
28
29.hide { display: none; }
30
31.clipboard-button {
32 display: none;
33}
34
35.clipboard--supported .clipboard-button {
36 display: initial;
37}
38
39.my-audits-index {
40 .attribute-truncate {
41 @include ellipsis(200px);
42 }
43}
44
45.my-mfas-new {
46 #canvas {
47 margin-left: auto;
48 margin-right: auto;
49 display: block;
50 }
51}