-
Notifications
You must be signed in to change notification settings - Fork 23
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
Making the info font bigger #1021
Making the info font bigger #1021
Conversation
@@ -1,9 +1,203 @@ | |||
// import React, { FC, useState } from 'react'; | |||
// import { Card, CardContent, Box } from '@material-ui/core'; |
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.
These comments shouldn't remain here
|
||
const handleCardEditorOpen = (name:string) =>{ | ||
const handleCardEditorOpen = (name: string) => { |
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.
All these space changes are things that happen automatically sometimes by VScode, but you usually don't want to push them because, even though they are good changes, are not related to the issue
@@ -96,6 +292,13 @@ const AnyWayCard: FC<IProps> = ({ | |||
const sizes = getSizes(variant, factor); | |||
|
|||
const classes = useStyles(); | |||
|
|||
const tooltipClasses = makeStyles(() => ({ | |||
tooltip: { |
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 already a var of makeStyles in this file, it is called useStyles. you should use it instead of creating a new one. Try to copy the way it is already done, and talk to me if you need help
I change the font size of the info button to 13px.
Let me know if the size seems right to you or need another adjustment