You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./styles/styles.scss @error 'El mixin from() solo puede recibir un breakpoint del Core (#{map-keys($breakpoints)}) o un número en px, em o rem' ^ El mixin from() solo puede recibir un breakpoint del Core (s, m, lg, xl, xxl) o un número en px, em o rem
The text was updated successfully, but these errors were encountered:
Lo mismo me pasa, lo que tuve que hacer es ir al directorio "ed-grid\src\scss\ed-grid.scss" y comentar el siguiente codigo, que al parecer es el codigo para las cuestiones de los componentes como botones y cards, entre otros:
// CSS Variables
:root {
// Prototype
--color : #007BDF;
--gap : #{$l-unit * 2}; // 1rem
--color-alt : #006DC6;
--light-bg : #F0F0F0;
--vertical-block-space : #{$l-unit * 2}; // 1rem
// layout
--border-color : #DFE0E0;
--vertical-content-space : #{$l-unit * 2}; // 1rem
--border-radius : #{$l-unit * 0.5}; // .25rem
--max-width : #{$max-width};
//Esto es lo que produce el problema.. aqui esta intentanto tomar el breakpoint lg pero ya no existe debido a que le
//cambiaste el nombre. deberas de comentar este include o eliminarlo.
@include from(lg) {
--gap : #{$l-unit * 4}; // 2rem
--vertical-block-space : #{$l-unit * 4};
}
}
Al cambiar los breakpoints se muestra:
./styles/styles.scss @error 'El mixin from() solo puede recibir un breakpoint del Core (#{map-keys($breakpoints)}) o un número en px, em o rem' ^ El mixin from() solo puede recibir un breakpoint del Core (s, m, lg, xl, xxl) o un número en px, em o rem
The text was updated successfully, but these errors were encountered: