UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

14 lines (12 loc) 309 B
/* * This file is part of CoCalc: Copyright © 2020 Sagemath, Inc. * License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details */ export function handle_share_css(_req: any, res: any): void { res.type("text/css"); res.send(`\ .cocalc-jupyter-anchor-link { visibility : hidden };\ `); }