Skip to content

Commit 7e03371

Browse files
committed
chore(sass): migrate from deprecated mixed decls
Signed-off-by: Grigorii K. Shartsev <[email protected]>
1 parent 958371b commit 7e03371

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

apps/settings/src/components/AppStoreDiscover/PostType.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,15 +252,15 @@ export default defineComponent({
252252
}
253253
254254
&__play-icon {
255+
position: absolute;
256+
top: -46px; // half of the icon height
257+
inset-inline-end: -46px; // half of the icon width
258+
255259
&-wrapper {
256260
position: relative;
257261
top: -50%;
258262
inset-inline-start: -50%;
259263
}
260-
261-
position: absolute;
262-
top: -46px; // half of the icon height
263-
inset-inline-end: -46px; // half of the icon width
264264
}
265265
}
266266

apps/settings/src/components/Users/UserListHeader.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ export default Vue.extend({
143143
@import './shared/styles.scss';
144144
145145
.header {
146+
border-bottom: 1px solid var(--color-border);
147+
146148
@include row;
147149
@include cell;
148-
149-
border-bottom: 1px solid var(--color-border);
150150
}
151151
</style>

core/src/views/LegacyUnifiedSearch.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,10 @@ $input-padding: 10px;
817817
}
818818
819819
&__results {
820+
display: flex;
821+
flex-direction: column;
822+
gap: 4px;
823+
820824
&-header {
821825
display: block;
822826
margin: $margin;
@@ -826,9 +830,6 @@ $input-padding: 10px;
826830
font-size: 19px;
827831
font-weight: bold;
828832
}
829-
display: flex;
830-
flex-direction: column;
831-
gap: 4px;
832833
}
833834
834835
.unified-search__result-more::v-deep {

0 commit comments

Comments
 (0)