Lines Matching refs:breakpoint
23 * @var string - the length value (may be breakpoint conditional)
28 * @var string - the length value without breakpoint
43 private $breakpoint;
73 $this->breakpoint = $conditionalValue->getBreakpoint();
152 $breakpoint = $this->getBreakpointOrDefault();
153 if ($breakpoint === "xs") {
156 return "col-{$breakpoint}-$colsNumber";
183 $breakpoint = $this->getBreakpointOrDefault();
184 if ($breakpoint === "xs") {
187 return "row-cols-{$breakpoint}-$colsNumber";
193 return $this->breakpoint;
240 if ($this->breakpoint !== null) {
241 return $this->breakpoint;
357 * @return string - the breakpoint value that should be added into a bootstrap class
360 * If there is no breakpoint, the empty string is returned
365 if ($this->breakpoint !== null) {
366 if($this->breakpoint==="xs"){
369 return "-{$this->breakpoint}";