forked from hacc/haccfiles
25 lines
456 B
CSS
25 lines
456 B
CSS
|
|
||
|
/* Hides extra fields on connect screen */
|
||
|
.connect-row:nth-of-type(4) {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
.connect-row:nth-of-type(2) {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
.connect-row:nth-of-type(5) {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* Hides side panel button */
|
||
|
.header > button:first-child {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
/* Hides channel options button (includes leave option) */
|
||
|
.header > button:nth-last-child(2) {
|
||
|
display: none !important;
|
||
|
}
|