.tag-list-item {
  /* background-color: red; */
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: var(--border-radius--base);
  
  /* .link {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--space--small);
    text-decoration: none;
  }
  
  .timestamp {
    display: none;
  }
  
  .ghost {
    color: var(--color--gray-500)
  }
  
  .delete {
    opacity: 0;
    height: 100%;
    
    &:hover {
      background-color: red;
      color: white;
    }
  }
  
  &:hover {
    background-color: white;
    
    .timestamp {
      display: inline;
    }
    
    .relative-time {
      display: none
    }
    
    .delete {
      opacity: 1;
    }
  } */
}


