Move breakpoints to breakpoint for easier @use

This commit is contained in:
2025-06-09 20:44:21 -04:00
parent 5f050066e9
commit 8fe6e39440
5 changed files with 15 additions and 15 deletions

View File

@@ -10,7 +10,7 @@
*/
@use "../pg/patterns/core/breakpoints/breakpoints";
@use "../pg/patterns/core/breakpoint/breakpoint";
@mixin core-colour-samples {
@@ -50,14 +50,14 @@
gap: 1rem;
margin-bottom: 1rem;
@include breakpoints.break(-lg) {
@include breakpoint.break(-lg) {
display: grid;
grid-template-columns: repeat(2, 1fr);
max-width: 100%;
width: 100%;
}
@include breakpoints.break(-sm) {
@include breakpoint.break(-sm) {
grid-template-columns: auto;
width: 100%;
max-width: 100%;
@@ -81,7 +81,7 @@
width: 20rem;
max-width: 318px;
@include breakpoints.break(-lg) {
@include breakpoint.break(-lg) {
width: 100%;
max-width: 100%;
}