blob: 04ca8126ac8d39ff75900af7819aff6efa52905a (
plain) (
blame)
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
|
@import '_variables';
@import '_mixins';
.form-sub-title {
flex-grow: 0;
margin-right: 30px;
}
@media screen and (max-width: $small-view) {
::ng-deep .plugins .plugin .first-row {
flex-wrap: wrap;
.plugin-name,
.plugin-version,
.plugin-icon {
margin-bottom: 10px;
}
.buttons {
my-edit-button,
my-delete-button,
my-button {
.action-button {
padding: 0 13px;
}
.button-label {
display: none;
}
}
}
}
}
|