Skip to content

Commit

Permalink
chore(sass): migrate from deprecated mixed decls
Browse files Browse the repository at this point in the history
Signed-off-by: Grigorii K. Shartsev <[email protected]>
  • Loading branch information
ShGKme committed Oct 14, 2024
1 parent 958371b commit 7e03371
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions apps/settings/src/components/AppStoreDiscover/PostType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -252,15 +252,15 @@ export default defineComponent({
}

&__play-icon {
position: absolute;
top: -46px; // half of the icon height
inset-inline-end: -46px; // half of the icon width

&-wrapper {
position: relative;
top: -50%;
inset-inline-start: -50%;
}

position: absolute;
top: -46px; // half of the icon height
inset-inline-end: -46px; // half of the icon width
}
}

Expand Down
4 changes: 2 additions & 2 deletions apps/settings/src/components/Users/UserListHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ export default Vue.extend({
@import './shared/styles.scss';

.header {
border-bottom: 1px solid var(--color-border);

@include row;
@include cell;

border-bottom: 1px solid var(--color-border);
}
</style>
7 changes: 4 additions & 3 deletions core/src/views/LegacyUnifiedSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,10 @@ $input-padding: 10px;
}

&__results {
display: flex;
flex-direction: column;
gap: 4px;

&-header {
display: block;
margin: $margin;
Expand All @@ -826,9 +830,6 @@ $input-padding: 10px;
font-size: 19px;
font-weight: bold;
}
display: flex;
flex-direction: column;
gap: 4px;
}

.unified-search__result-more::v-deep {
Expand Down

0 comments on commit 7e03371

Please sign in to comment.