chore: Consistent CSS variable names and general housekeeping of styles (#2947)

This commit is contained in:
Lipis 2021-02-16 20:22:18 +02:00 committed by GitHub
parent 9c0f832a41
commit 9dd2257932
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 149 additions and 147 deletions

View file

@ -2,18 +2,18 @@
.excalidraw {
.TextInput {
color: var(--text-color-primary);
color: var(--text-primary-color);
display: inline-block;
border: 1.5px solid var(--button-gray-1);
line-height: 1;
padding: 0.75rem;
white-space: nowrap;
border-radius: var(--space-factor);
background-color: var(--input-background-color);
background-color: var(--input-bg-color);
&:not(:focus) {
&:hover {
background-color: var(--input-hover-background-color);
background-color: var(--input-hover-bg-color);
}
}