/**
 * Copyright (c) Cisco Systems, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 */
 
 @mixin css-grid {
    .grid {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 2rem;
        margin: 1rem;
        font-size: 12px;
        margin: 0.5rem 0.5rem 0.5rem 1rem;
        width: calc(100% - 24px);
      
        .cell {
          vertical-align: top;
        }

        .cell:nth-child(odd) {
          color: var(--md-secondary-text-color, #545454);
        }
      
        .cell:nth-child(even) {
          color: var(--md-primary-text-color, #121212);
        }
    }
}
  