Skip to content

Commit

Permalink
fix tailwind import
Browse files Browse the repository at this point in the history
  • Loading branch information
luanfreitasdev committed Oct 23, 2023
1 parent 3fd6fb3 commit 8d2687d
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/bootstrap5.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"/powergrid.js": "/powergrid.js?id=3043c3fe79e9f0b46ab1caad476bf63e",
"/bootstrap5.css": "/bootstrap5.css?id=6269bae78c9b7be452731fb2e6d724cf",
"/tailwind.css": "/tailwind.css?id=270cf633817ecddf3977376b72dee24e",
"/bootstrap5.css": "/bootstrap5.css?id=03aba1df82c23db07c1d1096efcd42ae",
"/tailwind.css": "/tailwind.css?id=23e875c1f75fa40980aa6037d6d9daf0",
"/tom-select.css": "/tom-select.css?id=7af730d2c4bf937316d4002948b1571d",
"/powergrid.css": "/powergrid.css?id=f6bd5092ec92b7fb6d3488dd0bb5602f"
}
2 changes: 1 addition & 1 deletion dist/tailwind.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions resources/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,30 @@ table {
width: 100%;
}

.loader {
border-top-color: #222;
-webkit-animation: spinner 1.5s linear infinite;
animation: spinner 1.5s linear infinite
}

@-webkit-keyframes spinner {
0% {
-webkit-transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg)
}
}

@keyframes spinner {
0% {
transform: rotate(0)
}
100% {
transform: rotate(360deg)
}
}

table thead {
padding-left: 15px;
text-transform: uppercase;
Expand Down

0 comments on commit 8d2687d

Please sign in to comment.