Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tailwind #29

Merged
merged 52 commits into from
Jun 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
16c3c10
Removed boostrap
dsbilling Jun 18, 2021
6b3d8f9
Installed spatie/laravel-cookie-consent
dsbilling Jun 18, 2021
f9851cc
Installed Tailwind
dsbilling Jun 18, 2021
be32810
Reworked login page
dsbilling Jun 18, 2021
a446928
WIP of main layout
dsbilling Jun 18, 2021
c1fdfa3
Updated cookie consent position
dsbilling Jun 18, 2021
2d553ce
Create cookie.svg
dsbilling Jun 18, 2021
a91ba8f
Compiled assets
dsbilling Jun 18, 2021
fb68a13
Compiled prod assets
dsbilling Jun 18, 2021
d005992
Composer update
dsbilling Jun 18, 2021
54c44c4
Minor carbon tweak
dsbilling Jun 20, 2021
02f09a0
Updated menu
dsbilling Jun 20, 2021
4cb7d92
Updated skin card styling
dsbilling Jun 20, 2021
8f36ef9
New and pop
dsbilling Jun 20, 2021
b3244bb
Compiled
dsbilling Jun 20, 2021
c19f261
Removed old commands
dsbilling Jun 20, 2021
210d4f6
Tailwind loading adjustment
mrmacgeek Jun 22, 2021
5a76a13
Merge pull request #27 from P3D-Legacy/mrmacgeek-patch-1
dsbilling Jun 22, 2021
995d8aa
Updated packages
dsbilling Jun 22, 2021
fd462c3
Compiled assets
dsbilling Jun 22, 2021
7aa2902
Removed old cookie consent and updated imports
dsbilling Jun 22, 2021
1c0d86c
Added test button to login
dsbilling Jun 22, 2021
9a516f3
Update app.js
mrmacgeek Jun 22, 2021
bd7be20
Merge pull request #28 from P3D-Legacy/mrmacgeek-patch-alpine
dsbilling Jun 22, 2021
794bf1a
Installed newest alpinejs
dsbilling Jun 22, 2021
caa3e73
Removed test button
dsbilling Jun 22, 2021
f67a752
Fixed toggle menus
dsbilling Jun 22, 2021
c002990
Removed test-button
dsbilling Jun 22, 2021
d9b3b73
Completed header menu
dsbilling Jun 22, 2021
1a74459
Adding mobile menu
dsbilling Jun 23, 2021
27af531
Added table for users view
dsbilling Jun 23, 2021
b4ea311
Fixed bg moving when different styled pages
dsbilling Jun 29, 2021
b5f24e0
Fixed link
dsbilling Jun 29, 2021
6e33304
Updated my skins header
dsbilling Jun 29, 2021
7f571ba
Added missing br
dsbilling Jun 29, 2021
b685f8d
Remove bootstrap paginator
dsbilling Jun 29, 2021
d29e4ec
Updated public skin pages
dsbilling Jun 29, 2021
9936a19
Update 'Create Skin' page
dsbilling Jun 29, 2021
88f329b
Update show.blade.php
dsbilling Jun 29, 2021
4f3234f
Added class to not found text
dsbilling Jun 29, 2021
bcc1b45
Updated button icon
dsbilling Jun 29, 2021
344e3a4
Update edit.blade.php
dsbilling Jun 29, 2021
38f9642
Updated content styling
dsbilling Jun 29, 2021
50affb6
Updated alert styling
dsbilling Jun 29, 2021
5f9bcb3
Fixed grids
dsbilling Jun 29, 2021
43ff254
Removed old header
dsbilling Jun 29, 2021
e3660b5
Added home button
dsbilling Jun 29, 2021
487e8ef
Updated design for the home page
dsbilling Jun 29, 2021
6a03803
Updated user profile
dsbilling Jun 29, 2021
0e37a09
Update card.blade.php
dsbilling Jun 29, 2021
31f889a
Updated Player Skins page
dsbilling Jun 29, 2021
0141e85
Updated Uploaded Skins
dsbilling Jun 29, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public function register()
*/
public function boot()
{
Paginator::useBootstrap();
//
}
}
16 changes: 1 addition & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"overtrue/laravel-like": "^4.0",
"sentry/sentry-laravel": "^2.5",
"spatie/laravel-activitylog": "^3.16",
"twbs/bootstrap": "5.0.0-beta1"
"spatie/laravel-cookie-consent": "^2.12"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5",
Expand Down Expand Up @@ -71,20 +71,6 @@
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-install-cmd": [
"rm -rf public/css/bootstrap.min.css",
"rm -rf public/js/bootstrap.min.js",
"cp -R vendor/twbs/bootstrap/dist/css/bootstrap.min.css public/css/bootstrap.min.css",
"cp -R vendor/twbs/bootstrap/dist/js/bootstrap.min.js public/js/bootstrap.min.js",
"rm -rf public/skins"
],
"post-update-cmd": [
"rm -rf public/css/bootstrap.min.css",
"rm -rf public/js/bootstrap.min.js",
"cp -R vendor/twbs/bootstrap/dist/css/bootstrap.min.css public/css/bootstrap.min.css",
"cp -R vendor/twbs/bootstrap/dist/js/bootstrap.min.js public/js/bootstrap.min.js",
"rm -rf public/skins"
]
}
}
Loading