-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor tailwind processing to improve organization
- Loading branch information
1 parent
b007904
commit c61c496
Showing
10 changed files
with
56 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@import "./partials/tailwind.css"; | ||
@import "./partials/alpine.css"; | ||
@import "./partials/general.css"; | ||
@import "./partials/glucide.css"; | ||
@import "./partials/htmx.css"; | ||
@import "./partials/slim-select.css"; | ||
@import "./partials/scrollbar.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[x-cloak] { | ||
display: none !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
html { | ||
overflow-x: hidden; | ||
overflow-y: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
svg[data-glucide="icon"]:not([class*="size-"]) { | ||
@apply size-4; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.htmx-indicator { | ||
display: none; | ||
} | ||
|
||
.htmx-request .htmx-indicator { | ||
display: block; | ||
} | ||
|
||
.htmx-request.htmx-indicator { | ||
display: block; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
*, | ||
*:hover { | ||
/* Reset scrollbar*/ | ||
scrollbar-color: auto; | ||
} | ||
|
||
*::-webkit-scrollbar { | ||
-webkit-appearance: none; | ||
width: 6px; | ||
height: 6px; | ||
} | ||
|
||
*::-webkit-scrollbar-thumb { | ||
@apply bg-gray-500; | ||
border-radius: 3px; | ||
} | ||
|
||
/* Fallback scrollbar style for Firefox */ | ||
@-moz-document url-prefix() { | ||
* { | ||
scrollbar-width: thin; | ||
} | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
@tailwind variants; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters