Fixed channel name alignment
parent
db20070b49
commit
f80b9e9caa
|
@ -146,7 +146,7 @@ export class ParsedChannelName {
|
||||||
this.alignment = "right";
|
this.alignment = "right";
|
||||||
break;
|
break;
|
||||||
case "l":
|
case "l":
|
||||||
this.alignment = "center";
|
this.alignment = "left";
|
||||||
break;
|
break;
|
||||||
case "c":
|
case "c":
|
||||||
this.alignment = "center";
|
this.alignment = "center";
|
||||||
|
|
|
@ -50,8 +50,13 @@ html:root {
|
||||||
max-width: 100%; /* important for the repetitive channel name! */
|
max-width: 100%; /* important for the repetitive channel name! */
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
|
|
||||||
|
&.align-left {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
&.align-right {
|
&.align-right {
|
||||||
justify-content: right;
|
justify-content: flex-end;
|
||||||
|
padding-right: .25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.align-center, &.align-repetitive {
|
&.align-center, &.align-repetitive {
|
||||||
|
|
Loading…
Reference in New Issue