Fixed one variable and an unused style import

canary
WolverinDEV 2020-07-20 19:15:51 +02:00
parent 73447e471c
commit f6a270c3f4
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,8 @@ html:root {
--footer-background: #252525; --footer-background: #252525;
--footer-text: #666666; --footer-text: #666666;
--channel-chat-seperator: #707070; --channel-chat-seperator: #1e1e1e;
--channel-chat-seperator-selected: #707070;
} }
.app { .app {
@ -241,7 +242,7 @@ html:root {
$animation_seperator_length: .1s; $animation_seperator_length: .1s;
.container-seperator { .container-seperator {
@include transition(all $animation_seperator_length ease-in-out); @include transition(all $animation_seperator_length ease-in-out);
background: #1e1e1e; background: var(--channel-chat-seperator);
flex-grow: 0; flex-grow: 0;
flex-shrink: 0; flex-shrink: 0;
@ -263,7 +264,7 @@ $animation_seperator_length: .1s;
&.seperator-selected { &.seperator-selected {
@include transition(all $animation_seperator_length ease-in-out); @include transition(all $animation_seperator_length ease-in-out);
background-color: var(--channel-chat-seperator); background-color: var(--channel-chat-seperator-selected);
} }
} }

View File

@ -7,7 +7,6 @@ import {BoxedInputField, FlatInputField} from "tc-shared/ui/react-elements/Input
import {useState} from "react"; import {useState} from "react";
import {LoadingDots} from "tc-shared/ui/react-elements/LoadingDots"; import {LoadingDots} from "tc-shared/ui/react-elements/LoadingDots";
import {Checkbox} from "tc-shared/ui/react-elements/Checkbox"; import {Checkbox} from "tc-shared/ui/react-elements/Checkbox";
import 'rc-color-picker/assets/index.css';
import {Button} from "tc-shared/ui/react-elements/Button"; import {Button} from "tc-shared/ui/react-elements/Button";
import {createErrorModal, createInfoModal} from "tc-shared/ui/elements/Modal"; import {createErrorModal, createInfoModal} from "tc-shared/ui/elements/Modal";