feat(css): add placeholder for comments section

Added a placeholder for the link to the comments section in the CSS to support a future implementation of comments retrieval in the backend. The placeholder includes styles for displaying a comment request link and setting its font properties.

Ref: #22
This commit is contained in:
Kumi 2024-08-26 12:59:36 +02:00
parent 03993a8fce
commit 4312ec4ac3
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -904,6 +904,21 @@ span {
display: none;
}
/* Wikinews comments request
Currently blocked by implementation of comments retrieval in the backend
#commentrequest {
display: inline-block !important;
font-size: 0;
}
#commentrequest a::after {
content: "View comments section";
font-size: 1rem;
}
*/
/* Media query for devices with a max width of 768px */
@media (max-width: 768px) {
#header {