mettle / sendportal

Open-source self-hosted email marketing. Manage your own newsletters at a fraction of the cost.
https://sendportal.io
MIT License
1.72k stars 339 forks source link

Pagination icon broken? #184

Closed dv336699 closed 2 years ago

dv336699 commented 2 years ago

Hi, I have installed SendPortal yesterday and looks the pagination arrows are broken? It seems that the .h-5 and .w-5 classes are missing from the CSS?

Happy to submit a PR but thought I'd ask first if this is a known issue or just me.

Screenshot 2021-12-09 at 14 31 35 Screenshot 2021-12-09 at 14 32 25 Screenshot 2021-12-09 at 14 32 29

Thanks

kowalski215 commented 2 years ago

Hi, Having the same issue here!

JonoB commented 2 years ago

Did you publish the vendor files?

php artisan vendor:publish --provider=Sendportal\\Base\\SendportalBaseServiceProvider
dv336699 commented 2 years ago

@JonoB I thought I did, so I just done it again, is there anything else I can try? Still same results for me.

> php artisan vendor:publish --provider=Sendportal\\Base\\SendportalBaseServiceProvider
Copied Directory [/vendor/mettle/sendportal-core/resources/views] To [/resources/views/vendor/sendportal]
Copied Directory [/vendor/mettle/sendportal-core/resources/lang] To [/resources/lang/vendor/sendportal]
Copied Directory [/vendor/mettle/sendportal-core/public] To [/public/vendor/sendportal]
Publishing complete.

> php artisan view:clear
Compiled views cleared!

> php artisan cache:clear
Application cache cleared!
JonoB commented 2 years ago

Weird. This was an issue a long time ago. See https://github.com/mettle/sendportal/pull/117

kowalski215 commented 2 years ago

Hi @JonoB , same here, just tried republishing vendor files, but still seeing the big arrow icon...

kowalski215 commented 2 years ago

Hi. Is there any news concerning this? Adding CSS classes for w-5 and h-5 actually fixes it

Thanks :)

michaelzap commented 2 years ago

Even after adding .h-5 and .w-5 rules, the pagination CSS is very messy (and wrapped in a sm-6 column) Screenshot from 2022-01-26 15-13-20 .

krognome commented 2 years ago

Anyone who knows any CSS can fix this in a matter of minutes. If you do not know CSS then please stop developing bc you are upsetting real professionals like myself taking work away from people who care enough about their career to study CSS. Thanks :)

d3cline commented 1 year ago

edit ./public/vendor/sendportal/css/bootstrap.min.css add

.h-5 {
  height: 5rem !important;
}

.w-5 {
  width: 5rem !important;
}