Move fake link class

This commit is contained in:
2022-07-30 17:49:29 +02:00
parent f188e94e0c
commit 7f81af2454
3 changed files with 13 additions and 12 deletions

View File

@ -142,4 +142,14 @@
.pageSelector {
display: block;
}
}
.fakeLink {
color: var(--repl-color-link);
text-decoration: none;
cursor: pointer;
}
.fakeLink:hover {
text-decoration: underline;
}

View File

@ -19,12 +19,3 @@ body {
color: var(--repl-color);
background: #000;
}
.fake-link {
color: var(--repl-color-link);
text-decoration: none;
cursor: pointer;
}
.fake-link:hover {
text-decoration: underline;
}