refactor: minor ui improvements

This commit is contained in:
liyasthomas
2021-12-31 18:39:31 +05:30
parent 4791590869
commit 80956fbd27
22 changed files with 103 additions and 85 deletions

View File

@@ -484,7 +484,6 @@ export default defineComponent({
[contenteditable] {
@apply select-text;
@apply text-secondaryDark;
@apply font-medium;
&:empty {
@apply leading-loose;

View File

@@ -3,6 +3,7 @@
<slot></slot>
</div>
</template>
<script lang="ts">
/*
Implements a wrapper listening to viewport intersections via

View File

@@ -50,10 +50,7 @@
<div class="font-semibold truncate">
{{ label }}
</div>
<p
v-if="description"
class="font-medium my-2 text-left text-secondaryLight"
>
<p v-if="description" class="my-2 text-left text-secondaryLight">
{{ description }}
</p>
</div>
@@ -64,7 +61,7 @@
>
{{ infoIcon }}
</i>
<div v-if="shortcut.length" class="ml-2 <sm:hidden">
<div v-if="shortcut.length" class="ml-2 <sm:hidden font-medium">
<kbd
v-for="(key, index) in shortcut"
:key="`key-${index}`"