blob: f5ec4cc6c2f0bca1689464930de965d180ab804b (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
|
.from {
display: flex;
flex-direction: column;
// padding: 0 10px;
padding-right: 10px;
.label {
border: 1px solid #d2d2d2;
height: 30px;
justify-content: center;
align-items: center;
display: flex;
}
}
.from-select {
width: 250px;
border: none;
}
.from-conatiner {
display: flex;
flex-direction: column;
align-items: flex-start;
width: 100%;
min-width: 350px;
.input-text {
border: none;
flex: 1;
width: 100%;
min-width: 250px;
padding: 5px 0 5px 5px;
margin: 0;
}
}
.button-remove {
display: flex;
justify-content: center;
color: #a7a7a7;
&:hover {
color: #009fdb;
}
}
:host {
@mixin md-icon-size($size: 24px) {
font-size: $size;
height: $size;
width: $size;
}
.material-icons.mat-icon {
@include md-icon-size(24px);
}
/deep/ .mat-button-wrapper {
padding: 0;
display: flex;
}
.mat-icon {
width: 18px;
height: 18px;
}
}
|