* Moved html in scss to separate files * Moved components to designated folders * Moved logic from html to ts
29 lines
428 B
SCSS
29 lines
428 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
> div {
|
|
display: flex;
|
|
margin-top: 2px;
|
|
|
|
b {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 7px;
|
|
}
|
|
|
|
select2 {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
> div:last-child {
|
|
margin-top: 10px;
|
|
|
|
img {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
}
|