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

@@ -6,14 +6,14 @@
<style lang="scss">
.show-if-initialized {
opacity: 0;
@apply opacity-0;
&.initialized {
opacity: 1;
@apply opacity-100;
}
& > * {
transition: none;
@apply transition-none;
}
}
</style>