-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement annas feedback #282
Conversation
src/components/partials/PageMenu.vue
Outdated
@@ -19,7 +19,9 @@ | |||
Download Gameclient | |||
</RouterCCButton> | |||
</div> | |||
<LoginComponent /> | |||
<LoginComponent | |||
class="" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
src/views/LandingPage.vue
Outdated
<div class="text-black text-3xl pt-4"> | ||
<p>Crowd Control is a growing community based on open source and</p> | ||
<p>collaboration. Learn the game and give us your review.</p> | ||
<div class="h-[55rem] xl:h-[60rem] overflow-clip"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe that's something that should be done in the fade teaser itself. Would also be a good idea to incorporate this directly into my PR, since fade teaser behaviour is changed there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fade teaser is used in different situations, sometimes as the whole background of a page (learn and other pages) and sometimes only as a fragment (landing page)
src/views/Learn.vue
Outdated
@@ -1,12 +1,12 @@ | |||
<template> | |||
<div > | |||
<FadeTeaser> | |||
<div class="px-0 py-40 flex text-center justify-center"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should also not be done here, since TeaserHeader will be added in my PR, centralizing such behaviour.
src/views/NotFound.vue
Outdated
@@ -1,6 +1,6 @@ | |||
<template> | |||
<div class="bg-black flex text-center justify-center h-[80vh]"> | |||
<div class="my-auto"> | |||
<div class="mt-24 my-auto"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
src/views/CardCreatorPage.vue
Outdated
@@ -952,6 +953,32 @@ export default { | |||
isEmpty(a) { | |||
return R.isEmpty(a); | |||
}, | |||
getOBMask() { | |||
console.log("model", this.model.type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pls not so many console.logs
No description provided.