Fixed channel name alignment
parent
db20070b49
commit
f80b9e9caa
|
@ -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";
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue