mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 10:26:21 -06:00
chore: reformat entire project with prettier, add prettierignore
This commit is contained in:
@@ -1,24 +1,23 @@
|
||||
<template>
|
||||
<div class="image-skeleton" />
|
||||
<div class="image-skeleton" />
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: "ImageSkeleton",
|
||||
name: 'ImageSkeleton',
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@use "@/scss/_variables.scss" as *;
|
||||
@use '@/scss/_variables.scss' as *;
|
||||
|
||||
.image-skeleton {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: $gray-400;
|
||||
display: block;
|
||||
border-radius: 3px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: $gray-400;
|
||||
display: block;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user