// Copyright (c) 2014, 2026, Oracle and/or its affiliates.  Licensed under The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/


// use this to clear floats http://nicolasgallagher.com/micro-clearfix-hack/
@mixin oj-clearfix()
{
  &:before, &:after { 
    content: " "; 
    display: table; 
  }
  &:after { 
    clear: both; 
  }
}