/* Begin Utility Classes */
/* This is a slight duplication of the utils on W10_main.css because
I dont't want to break the login branding.
*/

/* https://tailwindcss.com/docs/text-overflow */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .text-ellipsis {
    text-overflow: ellipsis;
  }
  
  .text-clip {
    text-overflow: clip;
  }
  
  .w-fit {
    width: fit-content
  }
  
  .w-full {
    width: 100%;
  }

  .flex {
    display: flex
  }

  .flex-col {
    flex-direction: column;
  }

  .overflow-hidden {
    overflow: hidden;
  }
