src/devtools/views/StoreInspector/StoreTabBar.css [15:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  user-select: none;
  color: var(--color-text);

  /* Electron drag area */
  -webkit-app-region: no-drag;
}
.Tab:hover,
.TabCurrent:hover {
  background-color: var(--color-background-hover);
}
.Tab:focus-within,
.TabCurrent:focus-within {
  background-color: var(--color-background-hover);
}

.TabCurrent {
  border-bottom: 3px solid var(--color-tab-selected-border);
}

.TabDisabled {
  color: var(--color-dim);
  cursor: default;
}

.TabSizeLarge {
  font-size: var(--font-size-sans-large);
  padding: 0.5rem 1rem;
}
.TabSizeSmall {
  font-size: var(--font-size-sans-normal);
  padding: 0.25rem 0.5rem;
}

.Input {
  width: 0;
  margin: 0;
  opacity: 0;
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/devtools/views/TabBar.css [14:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  user-select: none;
  color: var(--color-text);

  /* Electron drag area */
  -webkit-app-region: no-drag;
}
.Tab:hover,
.TabCurrent:hover {
  background-color: var(--color-background-hover);
}
.Tab:focus-within,
.TabCurrent:focus-within {
  background-color: var(--color-background-hover);
}

.TabCurrent {
  border-bottom: 3px solid var(--color-tab-selected-border);
}

.TabDisabled {
  color: var(--color-dim);
  cursor: default;
}

.TabSizeLarge {
  font-size: var(--font-size-sans-large);
  padding: 0.5rem 1rem;
}
.TabSizeSmall {
  font-size: var(--font-size-sans-normal);
  padding: 0.25rem 0.5rem;
}

.Input {
  width: 0;
  margin: 0;
  opacity: 0;
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



