Fix logo location

This commit is contained in:
Hyunchul Kim 2021-09-18 01:59:32 +09:00
parent e3e6a04ccf
commit 890c9be3ab

View file

@ -83,6 +83,28 @@ html_footer = """
<script src="/src/scripts/hashEvent.js"></script> <script src="/src/scripts/hashEvent.js"></script>
<script src="/src/scripts/mobileArchiveEvent.js"></script> <script src="/src/scripts/mobileArchiveEvent.js"></script>
<script src="/src/scripts/accessibility.js"></script> <script src="/src/scripts/accessibility.js"></script>
<style>
.arko {
position: fixed;
right: 20px;
bottom: 55px;
width:150px;
}
@media ( min-width: 1080px ) {
.arko {
position: fixed;
right: 20px;
bottom: 20px;
width:150px;
}
}
</style>
</body> </body>
</html> </html>
""" """