/**
 * 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 table {
  table {
    display: block;
  
    tr {
      display: flex;
      flex-direction: row;
      margin-top: 8px;
  
      .title {
        min-width: 7rem;
        width: 40%;
        color: var(--md-secondary-text-color, #545454);
      }
  
      .value {
        flex: 1;
        color: var(--md-primary-text-color, #121212);
      }
    }
  }
}
