Fixed channel name alignment

master
WolverinDEV 2021-01-22 16:57:08 +01:00
parent db20070b49
commit f80b9e9caa
2 changed files with 7 additions and 2 deletions

View File

@ -146,7 +146,7 @@ export class ParsedChannelName {
this.alignment = "right";
break;
case "l":
this.alignment = "center";
this.alignment = "left";
break;
case "c":
this.alignment = "center";

View File

@ -50,8 +50,13 @@ html:root {
max-width: 100%; /* important for the repetitive channel name! */
overflow-x: hidden;
&.align-left {
justify-content: flex-start;
}
&.align-right {
justify-content: right;
justify-content: flex-end;
padding-right: .25em;
}
&.align-center, &.align-repetitive {