.xash3d_terminal code {
  display: block;
  width: 60ch;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  color: white;
}

.xash3d_launcher {
  background: #333 var(--xash-trame); 
  background-size: 4px;
  background-repeat: repeat;
}

:root {
  --mod-height: 36px;
}

html {
  /* im not gonna write a preprocessor for the css so i'm refrencing an element here */
  background: #333 var(--trame); 
  background-size: 4px;
  background-repeat: repeat;
}

.xash3d_launcher .mod {
  display: flex;
  padding: 1px;
  box-sizing: content-box;
  height: var(--mod-height)
}

.xash3d_launcher .info {
  border-right: 1px solid #666;
  flex: 1;
  align-self: center;
  margin: 2px 0 2px 5px;
}

.xash3d_launcher .info h4 {
  font-size: 16px;
  margin: 0
}

.xash3d_launcher .launch {
  width: var(--mod-height);
  height: var(--mod-height);
  box-sizing: content-box;
  background-image: url(play.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.xash3d_launcher .launch:active {
  opacity: .6;
}