Skip to content

Commit fa3bc6b

Browse files
committed
feat: adds stuff
1 parent 48e8a60 commit fa3bc6b

File tree

16 files changed

+51
-1242
lines changed

16 files changed

+51
-1242
lines changed

packages/web/.firebaserc

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/web/components/button.vue

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,17 @@ export default class Button extends Vue {
308308
text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2), 0 0 50px rgba(216, 216, 216, 0.1) !important;
309309
}
310310
311+
312+
.fancy-button svg {
313+
width: 170px !important;
314+
position: relative;
315+
top: -50px;
316+
transform: rotate(-12.5deg);
317+
left: -25px;
318+
mix-blend-mode: plus-lighter;
319+
opacity: 0.1;
320+
}
321+
311322
@media (max-width: 768px) {
312323
.fancy-button {
313324
padding: 10px 15px 10px;
@@ -321,8 +332,10 @@ export default class Button extends Vue {
321332
}
322333
323334
.fancy-button svg {
335+
width: 100px !important;
336+
top: -25px !important;
324337
position: relative;
325-
top: -5px !important;
338+
326339
}
327340
}
328341
</style>

packages/web/components/dialogs/tutor-dialog.vue

Lines changed: 0 additions & 38 deletions
This file was deleted.

packages/web/components/main-menu.vue

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
:animated="true"
3232
>
3333
<template #icon>
34-
<Icon class="text-white" :height="48" name="public" />
34+
<Icon class="text-white" :height="48" name="controller" />
3535
</template>
3636
{{ $t('lobbies.button') }}
3737
</Button>
@@ -47,10 +47,6 @@
4747
{{ $t('matchmaking.button') }}
4848
</Button>
4949

50-
<!--<Button to="teachers" variant="blue" :animated="true">
51-
<template #icon>👩‍🏫</template>
52-
Teacher Zone
53-
</Button>-->
5450
<Button
5551
:icon="true"
5652
:to="localePath('profile')"
@@ -63,18 +59,29 @@
6359
{{ $t('profile.button') }}
6460
</Button>
6561

66-
<Button
67-
:icon="true"
68-
:to="localePath('achievements')"
69-
disabled
70-
style="pointer-events: none"
71-
:animated="true"
72-
>
73-
<template #icon>
74-
<Icon class="text-white" :height="48" name="award" />
75-
</template>
76-
{{ $t('achievements.button') }}
77-
</Button>
62+
<!-- <Button-->
63+
<!-- :icon="true"-->
64+
<!-- :to="localePath('achievements')"-->
65+
<!-- disabled-->
66+
<!-- style="pointer-events: none"-->
67+
<!-- :animated="true"-->
68+
<!-- >-->
69+
<!-- <template #icon>-->
70+
<!-- <Icon class="text-white" :height="48" name="award" />-->
71+
<!-- </template>-->
72+
<!-- {{ $t('achievements.button') }}-->
73+
<!-- </Button> <Button-->
74+
<!-- :icon="true"-->
75+
<!-- :to="localePath('achievements')"-->
76+
<!-- disabled-->
77+
<!-- style="pointer-events: none"-->
78+
<!-- :animated="true"-->
79+
<!-- >-->
80+
<!-- <template #icon>-->
81+
<!-- <Icon class="text-white" :height="48" name="award" />-->
82+
<!-- </template>-->
83+
<!-- {{ $t('achievements.button') }}-->
84+
<!-- </Button>-->
7885

7986
<!--
8087
<Button variant="orange" :animated="true">
@@ -104,11 +111,7 @@ export default class MainMenu extends Vue {}
104111
padding-bottom: 80px;
105112
}
106113
107-
.main-menu svg {
108-
width: 48px;
109-
position: relative;
110-
top: 5px;
111-
}
114+
112115
113116
@media (max-width: 768px) {
114117
.main-menu {

0 commit comments

Comments
 (0)