Compare commits

...

2 Commits

Author SHA1 Message Date
acd6ed63e1 Add leading space to links 2025-09-20 18:51:03 +02:00
8b3c7871ab Add color to links 2025-09-20 18:50:38 +02:00
2 changed files with 6 additions and 1 deletions

View File

@@ -350,7 +350,8 @@ class Link extends Symbol {
} }
render() { render() {
return `<a href="${this.link}">${this.text}</a>`; // TODO: This leading space should probably be somewhere else.
return ` <a href="${this.link}">${this.text}</a>`;
} }
} }

View File

@@ -118,6 +118,10 @@
margin-left: 10px; margin-left: 10px;
} }
} }
a {
color: #00FFFF;
}
</style> </style>
</head> </head>