refactor(ui): sort windicss classes

This commit is contained in:
liyasthomas
2021-07-17 23:10:28 +05:30
parent a2a9bae0e3
commit 590c21209c
85 changed files with 32066 additions and 896 deletions

View File

@@ -4,7 +4,7 @@
:class="{ 'rounded-lg border-2 border-divider': saveRequest }"
>
<div
class="flex flex-col sticky z-10 top-0 bg-primary"
class="bg-primary flex flex-col top-0 z-10 sticky"
:class="{ '!top-10': !saveRequest && !doc }"
>
<input
@@ -13,13 +13,14 @@
type="search"
:placeholder="$t('search')"
class="
px-4
py-3
text-xs
border-b border-dividerLight
flex flex-1
font-medium
bg-primaryLight
border-b border-dividerLight
flex
font-medium
flex-1
text-xs
py-3
px-4
focus:outline-none
"
/>
@@ -30,7 +31,7 @@
@update-collection-type="updateCollectionType"
@update-selected-team="updateSelectedTeam"
/>
<div class="border-b flex justify-between flex-1 border-dividerLight">
<div class="border-b border-dividerLight flex flex-1 justify-between">
<ButtonSecondary
v-if="
collectionsType.type == 'team-collections' &&
@@ -94,18 +95,18 @@
</div>
<div
v-if="collections.length === 0"
class="flex items-center text-secondaryLight flex-col p-4 justify-center"
class="flex flex-col text-secondaryLight p-4 items-center justify-center"
>
<i class="material-icons opacity-50 pb-2">create_new_folder</i>
<i class="opacity-50 pb-2 material-icons">create_new_folder</i>
<span class="text-xs text-center">
{{ $t("create_new_collection") }}
</span>
</div>
<div
v-if="!(filteredCollections.length !== 0 || collections.length === 0)"
class="flex items-center text-secondaryLight flex-col p-4 justify-center"
class="flex flex-col text-secondaryLight p-4 items-center justify-center"
>
<i class="material-icons opacity-50 pb-2">manage_search</i>
<i class="opacity-50 pb-2 material-icons">manage_search</i>
<span class="text-xs text-center">
{{ $t("nothing_found") }} "{{ filterText }}"
</span>