mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
chore(sass): migrate from deprecated mixed decls
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
This commit is contained in:
parent
958371b6b8
commit
7e03371dd7
3 changed files with 10 additions and 9 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -817,6 +817,10 @@ $input-padding: 10px;
|
|||
}
|
||||
|
||||
&__results {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
|
||||
&-header {
|
||||
display: block;
|
||||
margin: $margin;
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue