forked from swagger-api/swagger-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_errors.scss
67 lines (51 loc) · 881 Bytes
/
_errors.scss
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
.errors-wrapper
{
margin: 20px;
padding: 10px 20px;
animation: scaleUp .5s;
border: 2px solid $_color-delete;
border-radius: 4px;
background: rgba($_color-delete, .1);
.error-wrapper
{
margin: 0 0 10px 0;
}
.errors
{
h4
{
font-size: 14px;
margin: 0;
@include text_code();
}
small
{
color: $errors-wrapper-errors-small-font-color;
}
}
hgroup
{
display: flex;
align-items: center;
h4
{
font-size: 20px;
margin: 0;
flex: 1;
@include text_headline();
}
}
}
@keyframes scaleUp
{
0%
{
transform: scale(.8);
opacity: 0;
}
100%
{
transform: scale(1);
opacity: 1;
}
}