Skip to content

Filtered archive

Posts with tag bootstrap

Bootstrap ver.4 to ver.5 Compatibility Layer

Part of Real-World CoreUI Migration: From Laravel 8 to Laravel 11 Since this project kept c- prefixed layout classes from CoreUI, it needed a custom compatibility layer for Bootstrap 4 utility classes that were removed or renamed in Bootstrap 5: // components/_layout.scss // Styles for migration Bootstrap 4 to 5 // Bootstrap 4 spacing utilities removed in BS5 @media (min-width: 768px) { .mr-md-auto, .mx-md-auto { margin-right: auto !important; } .text-md-right { ...
Read More
bootstrap

Real-World CoreUI Migration - From Laravel 8 to Laravel 11

Introduction At the beginning, there was a simple requirement - to upgrade a small web blog from Laravel 8 to Laravel 11. In general, problems with upgrading Laravel versions are well known, but solutions for two areas: using the Tinymce editor for the admin dashboard CSS solution for the frontend application with Vite 5 and CoreUI 5 proved to be challenging. It is the second area, using the new versions of CoreUI and Vite, that we will discuss in the following text. Structural issues rooted in...
Read More
laravel