pinafore/routes/_components/HiddenFromSSR.html

9 lines
185 B
HTML
Raw Normal View History

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