File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1010 " css"
1111 ],
1212 "homepage" : " https://www.github.com/strapless/base" ,
13- "version" : " 1.1.8 " ,
13+ "version" : " 1.1.9 " ,
1414 "authors" : [
1515 {
1616 "name" : " Aaron M Jones" ,
Original file line number Diff line number Diff line change 9797}
9898
9999// endregion //////////////////////////////////////////////////////////// End SVG String
100+
101+ // region /////////////////////////////////////////////////////////////// Other Functions
102+
103+ @function breakpoint-infix ($bp ) {
104+ @if variable-exists (grid-breakpoints ) == false {
105+ @error ' You must set the $grid-breakpoints map prior to the first usage of the `breakpoint-infix` function.' ;
106+ }
107+ @if map-has-key ($grid-breakpoints , $bp ) {
108+ $min : strip-unit (map-get ($grid-breakpoints , $bp ));
109+ @if $min > 0 {
110+ @return - #{$bp } ;
111+ }
112+ }
113+
114+ @return null;
115+ }
116+
117+ // endregion //////////////////////////////////////////////////////////// End Other Functions
118+
You can’t perform that action at this time.
0 commit comments