diff --git a/resources/css/tailwind.css b/resources/css/tailwind.css
index fb4462a8..b34f53ef 100644
--- a/resources/css/tailwind.css
+++ b/resources/css/tailwind.css
@@ -3,23 +3,23 @@
@tailwind utilities;
.card {
- @apply dark:bg-dark-foreground bg-white sm:p-6 p-4 rounded-xl lg:mb-6 mb-5
+ @apply mb-5 rounded-xl bg-white p-4 dark:bg-dark-foreground sm:p-6 lg:mb-6;
}
.widget-card {
- @apply dark:bg-dark-foreground bg-white lg:p-5 p-4 rounded-xl
+ @apply rounded-xl bg-white p-4 dark:bg-dark-foreground lg:p-5;
}
.input-dark {
- @apply w-full dark:bg-2x-dark-foreground bg-light-background py-3 sm:px-5 px-4 rounded-lg appearance-none border-transparent sm:text-base text-sm font-bold border
+ @apply w-full appearance-none rounded-lg border border-transparent bg-light-background py-3 px-4 text-sm font-bold dark:bg-2x-dark-foreground dark:placeholder:text-gray-600 sm:px-5 sm:text-base dark:disabled:text-gray-400;
}
.text-limit {
- @apply whitespace-nowrap text-ellipsis overflow-x-hidden block
+ @apply block overflow-x-hidden text-ellipsis whitespace-nowrap;
}
.is-inactive {
- @apply pointer-events-none opacity-40
+ @apply pointer-events-none opacity-40;
}
.grid-view {
@@ -32,4 +32,4 @@
.page-link {
@apply block flex h-8 w-8 cursor-pointer items-center justify-center rounded-lg text-sm font-bold transition duration-200 hover:bg-light-background;
-}
\ No newline at end of file
+}
diff --git a/resources/js/components/Admin/AppInputButton.vue b/resources/js/components/Admin/AppInputButton.vue
index 674f108f..0209dd49 100644
--- a/resources/js/components/Admin/AppInputButton.vue
+++ b/resources/js/components/Admin/AppInputButton.vue
@@ -8,7 +8,7 @@
{{ title }}:
-
+
diff --git a/resources/js/components/Admin/AppInputSwitch.vue b/resources/js/components/Admin/AppInputSwitch.vue
index d4a79442..937111c4 100644
--- a/resources/js/components/Admin/AppInputSwitch.vue
+++ b/resources/js/components/Admin/AppInputSwitch.vue
@@ -5,7 +5,7 @@
{{ title }}:
-
+
diff --git a/resources/js/components/Admin/AppInputText.vue b/resources/js/components/Admin/AppInputText.vue
index 1b5c800c..b7c7f74b 100644
--- a/resources/js/components/Admin/AppInputText.vue
+++ b/resources/js/components/Admin/AppInputText.vue
@@ -14,7 +14,7 @@
-
+
diff --git a/resources/js/components/FilesView/FileIconThumbnail.vue b/resources/js/components/FilesView/FileIconThumbnail.vue
index b44f917a..0b7da727 100644
--- a/resources/js/components/FilesView/FileIconThumbnail.vue
+++ b/resources/js/components/FilesView/FileIconThumbnail.vue
@@ -7,16 +7,16 @@
diff --git a/resources/js/components/FilesView/MemberAvatar.vue b/resources/js/components/FilesView/MemberAvatar.vue
index 275d06ac..5de0376e 100644
--- a/resources/js/components/FilesView/MemberAvatar.vue
+++ b/resources/js/components/FilesView/MemberAvatar.vue
@@ -19,15 +19,16 @@
borderRadius,
{
'border-3 border-white dark:border-dark-background': isBorder,
+ 'dark:bg-4x-dark-foreground bg-light-background': !member.data.attributes.color,
},
]"
:style="{
width: size + 'px',
height: size + 'px',
- background: member.data.attributes.color ? member.data.attributes.color : '#f4f5f6',
+ background: member.data.attributes.color ? member.data.attributes.color : '',
}"
>
-