forked from PrivateCoffee/wikimore
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:
parent
03993a8fce
commit
4312ec4ac3
1 changed files with 15 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue