🗑️ Remove unused Nova app.css file to streamline vendor assets

This commit is contained in:
HolgerHatGarKeineNode
2026-01-18 15:26:42 +01:00
parent 4095c967a5
commit 5476a74c8c
7 changed files with 38 additions and 632 deletions

View File

@@ -1,15 +1,33 @@
@import 'utility-patterns.css';
@import 'flatpickr.css';
@import './utility-patterns.css' layer(base);
@import './flatpickr.css' layer(base);
@tailwind base;
@tailwind components;
@tailwind utilities;
@import 'tailwindcss';
@config '../../tailwind.config.js';
/*
The default border color has changed to `currentcolor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentcolor);
}
}
/* See Alpine.js: https://github.com/alpinejs/alpine#x-cloak */
[x-cloak=""] {
display: none;
}
@media screen and (max-width: theme('screens.lg')) {
@media screen and (max-width: --theme(--breakpoint-lg)) {
[x-cloak="lg"] { display: none; }
}

View File

@@ -24,7 +24,7 @@
width: calc(var(--daysWidth) + calc(var(--calendarPadding)*2));
}
@screen lg {
@media (width >= theme(--breakpoint-lg)) {
.flatpickr-calendar {
@apply left-0 right-auto;
margin-left: 0;

View File

@@ -15,7 +15,7 @@
@apply text-2xl font-extrabold tracking-tight;
}
@screen md {
@media (width >= theme(--breakpoint-md)) {
.h1 {
@apply text-5xl;
}
@@ -30,7 +30,7 @@
.btn-lg,
.btn-sm,
.btn-xs {
@apply font-medium text-sm inline-flex items-center justify-center border border-transparent rounded-lg leading-5 shadow-sm transition;
@apply font-medium text-sm inline-flex items-center justify-center border border-transparent rounded-lg leading-5 shadow-xs transition;
}
.btn {
@@ -67,14 +67,14 @@ input[type="search"]::-webkit-search-results-decoration {
}
.form-checkbox {
@apply rounded;
@apply rounded-sm;
}
.form-input,
.form-textarea,
.form-multiselect,
.form-select {
@apply text-sm text-gray-800 dark:text-gray-100 leading-5 py-2 px-3 border-gray-200 hover:border-gray-300 focus:border-gray-300 dark:border-gray-700/60 dark:hover:border-gray-600 dark:focus:border-gray-600 shadow-sm rounded-lg;
@apply text-sm text-gray-800 dark:text-gray-100 leading-5 py-2 px-3 border-gray-200 hover:border-gray-300 focus:border-gray-300 dark:border-gray-700/60 dark:hover:border-gray-600 dark:focus:border-gray-600 shadow-xs rounded-lg;
}
.form-input,