Feat/tailwind (#1179)

This commit is contained in:
Liyas Thomas
2020-09-22 22:36:37 +05:30
committed by GitHub
parent 45fb612793
commit b747d0273c
59 changed files with 2020 additions and 1431 deletions

View File

@@ -1,19 +1,17 @@
<template>
<div class="show-if-initialized" :class="{ initialized }">
<div class="opacity-0 show-if-initialized" :class="{ initialized }">
<pre ref="editor"></pre>
</div>
</template>
<style lang="scss">
<style scoped lang="scss">
.show-if-initialized {
opacity: 0;
&.initialized {
opacity: 1;
@apply opacity-100;
}
& > * {
transition: none;
@apply transition-none;
}
}
</style>