🔥 refactor: remove unused meta hover logic

This was used for the previous functionality where the "time to read"
meta would become "number of words" on hover.
This commit is contained in:
welpo 2023-02-21 15:37:57 +01:00
parent 9ed4034260
commit ae88ca4db1
No known key found for this signature in database
GPG Key ID: A2F978CF4EC1F5A6

View File

@ -119,17 +119,3 @@ table td {
table tbody tr:nth-child(even) { table tbody tr:nth-child(even) {
background-color: var(--bg-0); background-color: var(--bg-0);
} }
.meta span:hover::before {
content: attr(word-count);
}
.meta span::before {
content: attr(reading-time);
}
.meta span.reading-time span.word-count {
display: inline-block;
position: relative;
width: 61em; /* adjust this value as needed */
}