File size: 871 Bytes
1e92f2d |
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 |
.plugins-results-header {
color: var(--color-gray-90);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
column-gap: 12px;
.plugins-results-header__titles {
display: flex;
flex-direction: column;
gap: 4px;
.plugins-results-header__title {
font-size: $font-body;
font-weight: 500;
line-height: 24px;
}
.plugins-results-header__subtitle {
font-size: $font-body-small;
line-height: 20px;
color: var(--studio-gray-80);
margin-bottom: 0;
}
}
.plugins-results-header__actions {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
margin-top: auto;
.plugins-results-header__action {
font-size: $font-body-small;
display: flex;
justify-content: flex-end;
align-items: center;
flex-grow: 4;
svg {
margin-left: 2px;
}
}
}
}
|