benjaminkott / bootstrap_package

Bootstrap Package delivers a full configured theme for TYPO3, based on the Bootstrap CSS Framework.
https://www.bootstrap-package.com/
MIT License
337 stars 202 forks source link

Altering $grid-breakpoints variable in _variables.scss leads to error #1328

Closed mrwhy-orig closed 1 year ago

mrwhy-orig commented 1 year ago

Bug Report

Using the $grid-breakpoints variable in _variable.scss leads to an compilation error.

".text-left" failed to @extend ".text-start". The selector ".text-start" was not found.: typo3conf/ext/bootstrap_package/Resources/Public/Scss/bootstrap5/../plugins/_photoswipe.scss on line 5, at column 9

Prerequisites

Typo3 v12.4.1 bootstrap_package 13.0.2

Description

[A clear and concise description of what the bug is.]

Steps to Reproduce

  1. add $grid-breakpoints variable and extend it with the xxxl key
  2. rerender the frontend
  3. 503 Error is displayed

Expected behavior

New Breakpoint with xxxl key.

Actual behavior

Compilation error

Versions

Typo3 12.4.1 bootstrap_package 13.0.2

mrwhy-orig commented 1 year ago

Sorry to bother... found the issue now... missed the xs breakpoint...

$grid-breakpoints: (
        xs: 0,
        sm: 576px,
        md: 768px,
        lg: 992px,
        xl: 1200px,
        xxl: 1400px,
        xxxl: 1600px
);