mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-16 14:21:57 +01:00
33 lines
809 B
Vue
33 lines
809 B
Vue
|
<!--
|
||
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
-->
|
||
|
|
||
|
<template>
|
||
|
<div :class="[$style.spacer, defaultStore.reactiveState.darkMode ? $style.dark : $style.light]"></div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { defaultStore } from '@/store.js';
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" module>
|
||
|
.spacer {
|
||
|
box-sizing: border-box;
|
||
|
padding: 32px;
|
||
|
margin: 0 auto;
|
||
|
height: 300px;
|
||
|
background-clip: content-box;
|
||
|
background-size: auto auto;
|
||
|
background-color: rgba(255, 255, 255, 0);
|
||
|
|
||
|
&.light {
|
||
|
background-image: repeating-linear-gradient(135deg, transparent, transparent 16px, #00000026 16px, #00000026 20px );
|
||
|
}
|
||
|
|
||
|
&.dark {
|
||
|
background-image: repeating-linear-gradient(135deg, transparent, transparent 16px, #FFFFFF16 16px, #FFFFFF16 20px );
|
||
|
}
|
||
|
}
|
||
|
</style>
|