Add icon to website

This commit is contained in:
Oliver-Akins 2020-10-21 20:22:23 -06:00
parent 0969db6948
commit cc6f69aab5

View file

@ -9,6 +9,7 @@
<div v-html="alert.message"></div> <div v-html="alert.message"></div>
</div> </div>
</transition> </transition>
<img class="icon" src="favicon.svg" alt="Secret Hitler Online Logo" width="50" height="50">
<WS-Test <WS-Test
v-if="state == 'ws-test'" v-if="state == 'ws-test'"
/> />
@ -127,13 +128,19 @@ p {
margin: 0 auto; margin: 0 auto;
} }
#app > .icon {
position: absolute;
left: 10px;
top: 10px;
}
.alert-bar { .alert-bar {
justify-content: center; justify-content: center;
position: absolute; position: absolute;
display: flex; display: flex;
padding: 3px; padding: 3px;
width: 100vw; width: 100vw;
z-index: 1; z-index: 2;
left: 0; left: 0;
top: 0; top: 0;
} }