Files
react/src/devtools/views/Components/SearchInput.css
T
2019-04-02 19:58:18 +01:00

40 lines
623 B
CSS

.SearchInput {
flex: 1;
display: flex;
align-items: center;
}
.Input {
flex: 1;
font-size: var(--font-size-sans-large);
outline: none;
border: none;
background-color: var(--color-background);
color: var(--color-text-color);
padding-left: 1.5rem;
margin-left: -1rem;
}
.InputIcon {
pointer-events: none;
z-index: 2;
}
.IndexLabel {
color: var(--color-dim);
font-size: var(--font-size-sans-normal);
}
.LeftVRule,
.RightVRule {
height: 20px;
width: 1px;
background-color: var(--color-border);
}
.LeftVRule {
margin: 0 0.25rem 0 0.5rem;
}
.RightVRule {
margin: 0 0.5rem 0 0.25rem;
}