Fixed connection coloring.

This commit is contained in:
Tom 2025-04-02 20:11:02 +00:00
parent b465f0a474
commit 70e0e9bf71
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<section [class.twitch]="connection().type == 'twitch'" <section [class.twitch]="connection().type == 'twitch'"
[class.spotify]="connection().type == 'spotify'"> [class.nightbot]="connection().type == 'nightbot'">
{{connection().name}} {{connection().name}}
<article class="right"> <article class="right">

View File

@ -2,6 +2,14 @@ section {
padding: 1em; padding: 1em;
} }
.twitch {
border-left: 1em solid #6441A5;
}
.nightbot {
border-left: 1em solid #3D5D9A;
}
.right { .right {
float: right; float: right;
} }