blob: 8965c5ea46fbd80454606826640f997fa0b175d7 (
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
|
.search {
button {
border: none;
fill: #637282;
background: #F4F4F4;
cursor: pointer;
margin-top: 3px;
&:focus {
outline: none;
}
}
}
.popup-wrapper {
min-width: calc(100% - 360px) !important;
}
@media screen and (max-width: 759px){
.popup-wrapper {
min-width: 100% !important;
}
}
.template-wrapper {
height: 32px;
display: grid;
grid-template-columns: auto auto;
span {
line-height: 32px;
}
}
@media screen and (max-width: 759px){
.template-wrapper {
display: flex;
height: auto;
flex-direction: column;
span {
line-height: unset;
}
}
}
.template-name {
justify-self: start;
}
.template-description {
color: gray;
justify-self: end;
}
|