-
Notifications
You must be signed in to change notification settings - Fork 365
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
fix: [M3-7298] - Improve Footer Styles #9823
fix: [M3-7298] - Improve Footer Styles #9823
Conversation
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.
🧼 🧹
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.
Nice improvement 👍
Version link still works ✅
Animation looks good ✅
Mobile view ✅
desktopMenuIsOpen: boolean; | ||
} | ||
|
||
const FEEDBACK_LINK = 'https://www.linode.com/feedback/'; |
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 we should move this to src/constants
? Seems there's precedent there since the link for the Community site is in there too
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.
seconded!
const StackScripts = React.lazy(() => import('src/features/StackScripts/StackScripts')); | ||
const StackScripts = React.lazy( | ||
() => import('src/features/StackScripts/StackScripts') | ||
); |
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.
I've seen this one before 🤣
desktopMenuIsOpen: boolean; | ||
} | ||
|
||
const FEEDBACK_LINK = 'https://www.linode.com/feedback/'; |
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.
seconded!
xs: 2, | ||
}, | ||
paddingY: theme.spacing(2.5), | ||
transition: 'all .1s linear', // match the sidebar transition speed |
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.
transition: 'all' can be expensive an unnecessary. Just transition the property you're interested in
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.
Neat. I didn't know this! Thank you!
Description 📝
Changes 🔄
xs
viewportsGrid
Preview 📷
New Animation ✨
Screen.Recording.2023-10-20.at.12.43.36.PM.mov
How to test 🧪
Reproduction steps
Verification steps
As an Author I have considered 🤔