Oh, so that's why it's in the BaseLayout.

This commit is contained in:
jvyden 2021-12-18 15:49:55 -05:00
commit 370637ecd2
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
2 changed files with 11 additions and 9 deletions

View file

@ -64,6 +64,17 @@
gtag('config', '@ServerSettings.Instance.GoogleAnalyticsId');
</script>
}
<style>
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
}
canvas.hide-subjects {
opacity: 0;
}
</style>
</head>
<body>
<div class="pageContainer">

View file

@ -16,12 +16,3 @@ div.statsUnderTitle > span {
margin-right: 5px;
}
canvas.photo-subjects {
opacity: 1;
transition: opacity 0.3s;
}
canvas.hide-subjects {
opacity: 0;
}