diff --git a/frontend/src/App.vue b/frontend/src/App.vue index d556899..86a09e3 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -253,6 +253,9 @@ html, #app, input, select { border-radius: 12pt; cursor: pointer; transition: all 0.13s ease-in-out; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } .btn:hover:not([disabled]) { background-color: var(--font-color); /* Green */ diff --git a/frontend/src/components/Chat.vue b/frontend/src/components/Chat.vue index 5f9372e..2d1e63e 100644 --- a/frontend/src/components/Chat.vue +++ b/frontend/src/components/Chat.vue @@ -166,6 +166,7 @@ input { @media only screen and (max-width:1000px) { #msg-form { flex-direction: column; + margin-bottom: 50pt; } #submit-message { margin-top: 6pt; diff --git a/frontend/src/components/Menu.vue b/frontend/src/components/Menu.vue index 03e970a..29982e3 100644 --- a/frontend/src/components/Menu.vue +++ b/frontend/src/components/Menu.vue @@ -12,8 +12,8 @@
-

{{$t("choose_username")}}

-
+

{{$t("choose_username")}}

+
@@ -24,7 +24,7 @@

{{$t("online_players")}}{{onlinePlayers}}

{{$t("create_lobby")}}

-
+

{{$t("lobby_name")}}

@@ -147,10 +147,25 @@ export default { mounted() { if (localStorage.getItem('username')) this.username = localStorage.getItem('username') + else { + let names = ['player', 'cowboy', 'madman', 'horseshoe', 'mustang', '🤠️', 'dog lover', 'random', 'cows', 'seagull', 'pewneer', 'pioneer', 'django', 'tarantined', 'horse', 'cinnamom', 'toast', 'notPewDiePie', 'username', 'caveman', 'cat', 'gold', 'chicken', 'nugget', 'bullet', 'fire', 'scott', 'emiliano', 'apple', 'pear', 'pencil', 'youtuber', 'hi mom', 'discord guy', '🥰️', 'somebody', 'AAAAA', 'BBBB', 'pain', 'help?', 'gg', 'gigi', 'lmao', 'yikes', 'you?', 'kid', 'cowgirl', 'bite', 'hungry', 'joe', 'limbo', 'leeeroy', 'jenkins', 'batman', 'spiderman', 'luke skywalker', 'nemo', 'zemo', 'ironman', 'butterman', 'postman', 'father', 'son', 'sven', 'mike', 'straw', 'saaay', 'whaaaat', 'rick', 'morty', 'wubbalubbadubdub'] + this.username = names[Math.floor(Math.random() * names.length)] + } this.$socket.emit('get_online_players') }, }