pinafore/routes/_components/HiddenFromSSR.html

9 lines
185 B
HTML
Raw Normal View History

2018-03-19 02:37:19 +01:00
<!-- toggled in 2xx.html based on whether the user is logged in or not -->
2018-03-21 04:56:52 +01:00
<div class="hidden-from-ssr">
2018-01-21 05:30:49 +01:00
<slot></slot>
</div>
2018-03-19 02:37:19 +01:00
<style>
.hidden-from-ssr {
opacity: 0;
}
2018-03-21 04:56:52 +01:00
</style>